From c935cb65a04080f21c74c9dc7490ec30a0f72e55 Mon Sep 17 00:00:00 2001 From: Elian Doran Date: Tue, 25 Feb 2025 20:10:57 +0200 Subject: [PATCH] fix(tasks): not being able to mark tasks as done --- src/public/app/widgets/type_widgets/task_list.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/public/app/widgets/type_widgets/task_list.ts b/src/public/app/widgets/type_widgets/task_list.ts index 4344d1f39..cbe1c6327 100644 --- a/src/public/app/widgets/type_widgets/task_list.ts +++ b/src/public/app/widgets/type_widgets/task_list.ts @@ -162,7 +162,7 @@ export default class TaskListWidget extends TypeWidget { } }); - this.$taskContainer.on("change", "input", async (e) => { + this.$taskContainer.on("change", "input:not(.check)", async (e) => { const $target = $(e.target); const task = this.#getCorrespondingTask($target); if (!task) {