diff options
| author | syuilo <Syuilotan@yahoo.co.jp> | 2022-12-28 13:26:30 +0900 |
|---|---|---|
| committer | syuilo <Syuilotan@yahoo.co.jp> | 2022-12-28 13:26:30 +0900 |
| commit | a970309b8b787629ab082effe6229d802559f2ed (patch) | |
| tree | 10f56540134f043feb44018e7347e1dbfe4b2488 | |
| parent | :art: (diff) | |
| download | misskey-a970309b8b787629ab082effe6229d802559f2ed.tar.gz misskey-a970309b8b787629ab082effe6229d802559f2ed.tar.bz2 misskey-a970309b8b787629ab082effe6229d802559f2ed.zip | |
tweak ui
| -rw-r--r-- | packages/frontend/src/ui/_common_/navbar-for-mobile.vue | 5 | ||||
| -rw-r--r-- | packages/frontend/src/ui/_common_/navbar.vue | 5 |
2 files changed, 10 insertions, 0 deletions
diff --git a/packages/frontend/src/ui/_common_/navbar-for-mobile.vue b/packages/frontend/src/ui/_common_/navbar-for-mobile.vue index 50b28de063..1af138f775 100644 --- a/packages/frontend/src/ui/_common_/navbar-for-mobile.vue +++ b/packages/frontend/src/ui/_common_/navbar-for-mobile.vue @@ -87,6 +87,11 @@ function openInstanceMenu(ev: MouseEvent) { text: i18n.ts.federation, icon: 'ti ti-whirl', to: '/about#federation', + }, { + type: 'link', + text: i18n.ts.charts, + icon: 'ti ti-chart-line', + to: '/about#charts', }, null, { type: 'parent', text: i18n.ts.help, diff --git a/packages/frontend/src/ui/_common_/navbar.vue b/packages/frontend/src/ui/_common_/navbar.vue index b82da15f13..ffc6f7e1c6 100644 --- a/packages/frontend/src/ui/_common_/navbar.vue +++ b/packages/frontend/src/ui/_common_/navbar.vue @@ -110,6 +110,11 @@ function openInstanceMenu(ev: MouseEvent) { text: i18n.ts.federation, icon: 'ti ti-whirl', to: '/about#federation', + }, { + type: 'link', + text: i18n.ts.charts, + icon: 'ti ti-chart-line', + to: '/about#charts', }, null, { type: 'parent', text: i18n.ts.help, |