diff --git a/src/components/tasks/partials/heading.vue b/src/components/tasks/partials/heading.vue index 73758a9fd..5fab34b74 100644 --- a/src/components/tasks/partials/heading.vue +++ b/src/components/tasks/partials/heading.vue @@ -85,9 +85,7 @@ const showSavedMessage = ref(false) async function save(title: string) { // We only want to save if the title was actually changed. - // Because the contenteditable does not have a change event - // we're building it ourselves and only continue - // if the task title changed. + // so we only continue if the task title changed. if (title === props.task.title) { return } diff --git a/src/components/tasks/partials/listSearch.vue b/src/components/tasks/partials/listSearch.vue index 2774f66bb..7e42e152f 100644 --- a/src/components/tasks/partials/listSearch.vue +++ b/src/components/tasks/partials/listSearch.vue @@ -2,12 +2,13 @@