summaryrefslogtreecommitdiff
path: root/src/client/app/common/views/components
diff options
context:
space:
mode:
authortamaina <tamaina@hotmail.co.jp>2019-05-03 00:05:12 +0900
committerSatsuki Yanagi <17376330+u1-liquid@users.noreply.github.com>2019-07-07 02:22:33 +0900
commit788edd3622ced91806f6dc2a4c5b8b8f17069a59 (patch)
tree66fa0be205cb764946cbd5f0221ad2a72b48a917 /src/client/app/common/views/components
parentclean up (diff)
downloadmisskey-788edd3622ced91806f6dc2a4c5b8b8f17069a59.tar.gz
misskey-788edd3622ced91806f6dc2a4c5b8b8f17069a59.tar.bz2
misskey-788edd3622ced91806f6dc2a4c5b8b8f17069a59.zip
fix
Diffstat (limited to 'src/client/app/common/views/components')
-rw-r--r--src/client/app/common/views/components/settings/app-type.vue5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/client/app/common/views/components/settings/app-type.vue b/src/client/app/common/views/components/settings/app-type.vue
index 61a23866e2..90ff28803b 100644
--- a/src/client/app/common/views/components/settings/app-type.vue
+++ b/src/client/app/common/views/components/settings/app-type.vue
@@ -7,7 +7,6 @@
<ui-select v-model="appTypeForce" :placeholder="$t('intro')">
<option v-for="x in ['auto', 'desktop', 'mobile']" :value="x" :key="x">{{ $t(`choices.${x}`) }}</option>
</ui-select>
- <ui-info>Current: <i>{{ $t(currentAppType) }}</i></ui-info>
<ui-info warn>{{ $t('info') }}</ui-info>
</section>
</ui-card>
@@ -19,12 +18,10 @@ import i18n from '../../../../i18n';
import { faMobileAlt } from '@fortawesome/free-solid-svg-icons'
export default Vue.extend({
- i18n: i18n('common/views/components/settings/client-mode.vue'),
+ i18n: i18n('common/views/components/settings/app-type.vue'),
data() {
return {
- currentAppType: (window as any).appType,
-
faMobileAlt
};
},