From 4a1a954386bd7338d8563571acb0068dd09e400a Mon Sep 17 00:00:00 2001 From: Kainoa Kanter Date: Fri, 7 Apr 2023 22:54:25 -0700 Subject: [PATCH] move hidden hashtag menu --- packages/client/src/pages/admin/index.vue | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/packages/client/src/pages/admin/index.vue b/packages/client/src/pages/admin/index.vue index 881105a234..07dac9c6be 100644 --- a/packages/client/src/pages/admin/index.vue +++ b/packages/client/src/pages/admin/index.vue @@ -181,12 +181,6 @@ const menuDef = $computed(() => [ to: "/admin/emojis", active: currentPage?.route.name === "emojis", }, - { - icon: "ph-hash ph-bold ph-lg", - text: i18n.ts.hashtags, - to: "/admin/hashtags", - active: currentPage?.route.name === "hashtags", - }, { icon: "ph-planet ph-bold ph-lg", text: i18n.ts.federation, @@ -275,6 +269,12 @@ const menuDef = $computed(() => [ active: currentPage?.route.name === "instance-block", }, + { + icon: "ph-hash ph-bold ph-lg", + text: i18n.ts.hiddenTags, + to: "/admin/hashtags", + active: currentPage?.route.name === "hashtags", + }, { icon: "ph-ghost ph-bold ph-lg", text: i18n.ts.proxyAccount,