diff options
| author | syuilo <4439005+syuilo@users.noreply.github.com> | 2025-03-11 20:42:06 +0900 |
|---|---|---|
| committer | syuilo <4439005+syuilo@users.noreply.github.com> | 2025-03-11 20:42:06 +0900 |
| commit | ddbc83b2e46de5c2931ea3ea421408b8182b25ba (patch) | |
| tree | d76961208b00b409ae9348d79ffbdea0fb9c3d11 /packages/frontend | |
| parent | enhance(frontend): improve settings page (diff) | |
| download | misskey-ddbc83b2e46de5c2931ea3ea421408b8182b25ba.tar.gz misskey-ddbc83b2e46de5c2931ea3ea421408b8182b25ba.tar.bz2 misskey-ddbc83b2e46de5c2931ea3ea421408b8182b25ba.zip | |
chore(frontend): tweak settings page
Diffstat (limited to 'packages/frontend')
| -rw-r--r-- | packages/frontend/src/pages/settings/index.vue | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/packages/frontend/src/pages/settings/index.vue b/packages/frontend/src/pages/settings/index.vue index 26677a188f..7bbec82757 100644 --- a/packages/frontend/src/pages/settings/index.vue +++ b/packages/frontend/src/pages/settings/index.vue @@ -92,11 +92,6 @@ const menuDef = computed<SuperMenuDef[]>(() => [{ to: '/settings/emoji-picker', active: currentPage.value?.route.name === 'emojiPicker', }, { - icon: 'ti ti-cloud', - text: i18n.ts.drive, - to: '/settings/drive', - active: currentPage.value?.route.name === 'drive', - }, { icon: 'ti ti-bell', text: i18n.ts.notifications, to: '/settings/notifications', @@ -146,6 +141,11 @@ const menuDef = computed<SuperMenuDef[]>(() => [{ }], }, { items: [{ + icon: 'ti ti-cloud', + text: i18n.ts.drive, + to: '/settings/drive', + active: currentPage.value?.route.name === 'drive', + }, { icon: 'ti ti-badges', text: i18n.ts.roles, to: '/settings/roles', |