chore(frontend): tweak settings page

This commit is contained in:
syuilo 2025-03-11 20:42:06 +09:00
parent d185785f20
commit ddbc83b2e4
1 changed files with 5 additions and 5 deletions

View File

@ -91,11 +91,6 @@ const menuDef = computed<SuperMenuDef[]>(() => [{
text: i18n.ts.emojiPicker, text: i18n.ts.emojiPicker,
to: '/settings/emoji-picker', to: '/settings/emoji-picker',
active: currentPage.value?.route.name === 'emojiPicker', 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', icon: 'ti ti-bell',
text: i18n.ts.notifications, text: i18n.ts.notifications,
@ -146,6 +141,11 @@ const menuDef = computed<SuperMenuDef[]>(() => [{
}], }],
}, { }, {
items: [{ items: [{
icon: 'ti ti-cloud',
text: i18n.ts.drive,
to: '/settings/drive',
active: currentPage.value?.route.name === 'drive',
}, {
icon: 'ti ti-badges', icon: 'ti ti-badges',
text: i18n.ts.roles, text: i18n.ts.roles,
to: '/settings/roles', to: '/settings/roles',