From cc7bf760912e6fb79199f12bf99d7d410d4555f7 Mon Sep 17 00:00:00 2001 From: kolaente Date: Wed, 17 Dec 2025 22:26:32 +0100 Subject: [PATCH] chore(task): do not try to cancel debounce handler The debounce handler cannot be canceled like that. Because the variable just gets destroyed when we unmount the component, no need to clean it up explicitely. --- frontend/src/views/tasks/TaskDetailView.vue | 1 - 1 file changed, 1 deletion(-) diff --git a/frontend/src/views/tasks/TaskDetailView.vue b/frontend/src/views/tasks/TaskDetailView.vue index 146288109..b9c0a7d8e 100644 --- a/frontend/src/views/tasks/TaskDetailView.vue +++ b/frontend/src/views/tasks/TaskDetailView.vue @@ -738,7 +738,6 @@ onMounted(() => { onBeforeUnmount(() => { document.removeEventListener('keydown', saveTaskViaHotkey) - debouncedMutationHandler.cancel() }) onBeforeRouteLeave(async () => {