Skip to content

Commit

Permalink
Merge pull request #499 from AmithBino/depricated-hooks
Browse files Browse the repository at this point in the history
fix-deprecated lifecycle hooks
  • Loading branch information
robotichead authored Oct 3, 2023
2 parents 8de352f + d54270e commit 99b344c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/js/components/kanban/KanbanBoard.vue
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ export default {
window.addEventListener("resize", this.resizeProcedure);
window.addEventListener("scroll", this.scrollProcedure);
},
destroyed() {
unmounted() {
window.removeEventListener("resize", this.resizeProcedure);
window.removeEventListener("scroll", this.scrollProcedure);
},
Expand Down

0 comments on commit 99b344c

Please sign in to comment.