summaryrefslogtreecommitdiff
path: root/src/client/app/mobile/views/components/ui.header.vue
diff options
context:
space:
mode:
Diffstat (limited to 'src/client/app/mobile/views/components/ui.header.vue')
-rw-r--r--src/client/app/mobile/views/components/ui.header.vue4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/client/app/mobile/views/components/ui.header.vue b/src/client/app/mobile/views/components/ui.header.vue
index 63399f7465..b87c6f1eb7 100644
--- a/src/client/app/mobile/views/components/ui.header.vue
+++ b/src/client/app/mobile/views/components/ui.header.vue
@@ -8,7 +8,7 @@
<button class="nav" @click="$parent.isDrawerOpening = true">%fa:bars%</button>
<template v-if="hasUnreadNotification || hasUnreadMessagingMessage || hasGameInvitation">%fa:circle%</template>
<h1>
- <slot>%i18n:common.name%</slot>
+ <slot>config.name</slot>
</h1>
<slot name="func"></slot>
</div>
@@ -20,11 +20,13 @@
<script lang="ts">
import Vue from 'vue';
import * as anime from 'animejs';
+import * as config from '../../../config';
export default Vue.extend({
props: ['func'],
data() {
return {
+ config,
hasGameInvitation: false,
connection: null,
connectionId: null