From af7c87a18c253f450baf7d394d0e518321d3367b Mon Sep 17 00:00:00 2001 From: Julien Calixte Date: Sat, 13 Jun 2026 22:11:31 +0200 Subject: [PATCH] fix(todo): drop stale filter selections when source values disappear MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit If a user filters by a project/context/priority and then edits tasks until that value no longer exists, the chip is gone but the active set still contains it — leaving the list filtered to empty with no chip to toggle off. Watch each available-list and prune orphaned entries from the matching active set. Also tightens the task-input placeholder and reflows some template whitespace. --- src/views/TodoNotes.vue | 47 +++++++++++++++++++++++------------------ 1 file changed, 26 insertions(+), 21 deletions(-) diff --git a/src/views/TodoNotes.vue b/src/views/TodoNotes.vue index 25681ef..3103ced 100644 --- a/src/views/TodoNotes.vue +++ b/src/views/TodoNotes.vue @@ -1,5 +1,5 @@