diff options
Diffstat (limited to 'src/client/app/mobile')
| -rw-r--r-- | src/client/app/mobile/views/components/ui.nav.vue | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/client/app/mobile/views/components/ui.nav.vue b/src/client/app/mobile/views/components/ui.nav.vue index 5257dafd0e..74564a48bb 100644 --- a/src/client/app/mobile/views/components/ui.nav.vue +++ b/src/client/app/mobile/views/components/ui.nav.vue @@ -41,7 +41,7 @@ <script lang="ts"> import Vue from 'vue'; -import { docsUrl, lang } from '../../../config'; +import { lang } from '../../../config'; export default Vue.extend({ props: ['isOpen'], @@ -50,7 +50,7 @@ export default Vue.extend({ hasGameInvitation: false, connection: null, connectionId: null, - aboutUrl: `${docsUrl}/${lang}/about` + aboutUrl: `/docs/${lang}/about` }; }, computed: { |