diff --git a/src/views/TodoNotes.vue b/src/views/TodoNotes.vue index c96faf6..9aca62d 100644 --- a/src/views/TodoNotes.vue +++ b/src/views/TodoNotes.vue @@ -111,7 +111,7 @@ const activePriorities = ref>(new Set()) // XOR: either "open" only, "done" only, or "all" (no status filter). type StatusFilter = "all" | "open" | "done" -const statusFilter = ref("all") +const statusFilter = ref("open") const setStatusFilter = (next: Exclude) => { statusFilter.value = statusFilter.value === next ? "all" : next }