fix(tasks): not being able to mark tasks as done

This commit is contained in:
Elian Doran 2025-02-25 20:10:57 +02:00
parent e7601f65bb
commit c935cb65a0
No known key found for this signature in database

View File

@ -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) {