diff options
Diffstat (limited to 'src/client/ui/default.side.vue')
| -rw-r--r-- | src/client/ui/default.side.vue | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/client/ui/default.side.vue b/src/client/ui/default.side.vue index 3a32cb4e13..89b648244f 100644 --- a/src/client/ui/default.side.vue +++ b/src/client/ui/default.side.vue @@ -20,6 +20,7 @@ import * as os from '@client/os'; import copyToClipboard from '@client/scripts/copy-to-clipboard'; import { resolve } from '@client/router'; import { url } from '@client/config'; +import * as symbols from '@client/symbols'; export default defineComponent({ components: { @@ -54,8 +55,8 @@ export default defineComponent({ methods: { changePage(page) { if (page == null) return; - if (page.INFO) { - this.pageInfo = page.INFO; + if (page[symbols.PAGE_INFO]) { + this.pageInfo = page[symbols.PAGE_INFO]; } }, |