From 08930c6de29b767480103b179b618476f4aadd64 Mon Sep 17 00:00:00 2001 From: ThatOneCalculator Date: Wed, 19 Apr 2023 21:05:41 -0700 Subject: [PATCH] fix header tabs --- packages/client/src/pages/tag.vue | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/packages/client/src/pages/tag.vue b/packages/client/src/pages/tag.vue index 38ba1e106d..9fe0745e46 100644 --- a/packages/client/src/pages/tag.vue +++ b/packages/client/src/pages/tag.vue @@ -75,8 +75,18 @@ watch($$(tab), () => syncSlide(tabs.indexOf(tab))); const headerActions = $computed(() => []); -const headerTabs = $computed(() => []); - +const headerTabs = $computed(() => [ + { + key: "notes", + icon: "ph-note ph-bold ph-lg", + title: i18n.ts.notes, + }, + { + key: "users", + icon: "ph-users ph-bold ph-lg", + title: i18n.ts.users, + }, +]); let swiperRef = null; function setSwiperRef(swiper) {