From 1514012c4c77fe57875cb80f307c423d9f5ead97 Mon Sep 17 00:00:00 2001 From: pa Date: Thu, 22 Jan 2026 17:56:20 +0900 Subject: [PATCH] fix navmenu red indicator --- src/components/NavMenu.vue | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/src/components/NavMenu.vue b/src/components/NavMenu.vue index 758a7428..8b4fc608 100644 --- a/src/components/NavMenu.vue +++ b/src/components/NavMenu.vue @@ -50,7 +50,11 @@ v-if="entry.icon" :class="entry.icon" class="inline-flex size-4 items-center justify-center text-base" /> - {{ t(entry.label) }} + {{ t(entry.label) }} @@ -94,7 +98,7 @@ class="inline-flex size-5 items-center justify-center text-base" /> {{ t(entry.label) }} @@ -672,6 +676,9 @@ return false; } const targets = []; + if (entry.index) { + targets.push(entry.index); + } if (entry.routeName) { targets.push(entry.routeName); }