From cabbe8c308e0b021cc8f048e9854c7a83783445e Mon Sep 17 00:00:00 2001 From: syuilo Date: Sun, 7 Aug 2022 11:16:22 +0900 Subject: [PATCH] fix(client): cannot show some setting pages Fix #9043 --- CHANGELOG.md | 8 +++++++- packages/client/src/router.ts | 16 ++++++++++++++++ 2 files changed, 23 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1f99af88b..e7bba3695 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,6 @@ ## 12.x.x (unreleased) ### Improvements -- Client: Preferences Registry ### Bugfixes - @@ -10,6 +9,13 @@ You should also include the user name that made the change. --> +## 12.x.x (unreleased) + +### Improvements + +### Bugfixes +- Client: can not show some setting pages @syuilo + ## 12.118.0 (2022/08/07) ### Improvements diff --git a/packages/client/src/router.ts b/packages/client/src/router.ts index 93bea0b2f..37a8fd3dc 100644 --- a/packages/client/src/router.ts +++ b/packages/client/src/router.ts @@ -105,6 +105,10 @@ export const routes = [{ path: '/sounds', name: 'sounds', component: page(() => import('./pages/settings/sounds.vue')), + }, { + path: '/plugin/install', + name: 'plugin', + component: page(() => import('./pages/settings/plugin.install.vue')), }, { path: '/plugin', name: 'plugin', @@ -149,6 +153,18 @@ export const routes = [{ path: '/preferences-backups', name: 'preferences-backups', component: page(() => import('./pages/settings/preferences-backups.vue')), + }, { + path: '/custom-css', + name: 'general', + component: page(() => import('./pages/settings/custom-css.vue')), + }, { + path: '/account-info', + name: 'other', + component: page(() => import('./pages/settings/account-info.vue')), + }, { + path: '/delete-account', + name: 'other', + component: page(() => import('./pages/settings/delete-account.vue')), }, { path: '/other', name: 'other',