From 7309c97502fb8c1bdd3d1f8aac18a1486d7ed647 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=BE=9D=E7=91=AA=E8=B2=93?= Date: Sun, 8 Mar 2026 14:14:11 +0800 Subject: [PATCH] Remove redundant self-assignment watcher in navbar state Co-Authored-By: Codex --- src/components/AppNavbar.vue | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/components/AppNavbar.vue b/src/components/AppNavbar.vue index 2cc6ae0..1ca31ee 100644 --- a/src/components/AppNavbar.vue +++ b/src/components/AppNavbar.vue @@ -203,10 +203,6 @@ watch( { deep: true }, ); -watch(filterName, (newVal) => { - filterName.value = newVal; -}); - /** * Handles navigation when a navbar tab is clicked. * @param {Event} event - The click event from the nav item.