diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2018-11-09 18:25:21 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2018-11-09 18:25:21 +0900 |
| commit | 0b53ef9bae939c0e23d136f1c93e1bce09af73cd (patch) | |
| tree | 9279fab08136c491f65acfb5d0c36928053e6a52 /src/client/app/mobile | |
| parent | Refactor client (#3178) (diff) | |
| download | misskey-0b53ef9bae939c0e23d136f1c93e1bce09af73cd.tar.gz misskey-0b53ef9bae939c0e23d136f1c93e1bce09af73cd.tar.bz2 misskey-0b53ef9bae939c0e23d136f1c93e1bce09af73cd.zip | |
[Client] Fix bug
Diffstat (limited to 'src/client/app/mobile')
| -rw-r--r-- | src/client/app/mobile/views/pages/settings.vue | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/client/app/mobile/views/pages/settings.vue b/src/client/app/mobile/views/pages/settings.vue index 445471200a..11fa3c31b1 100644 --- a/src/client/app/mobile/views/pages/settings.vue +++ b/src/client/app/mobile/views/pages/settings.vue @@ -24,6 +24,7 @@ <ui-switch v-model="contrastedAcct">{{ $t('contrasted-acct') }}</ui-switch> <ui-switch v-model="showFullAcct">{{ $t('@.show-full-acct') }}</ui-switch> <ui-switch v-model="useOsDefaultEmojis">{{ $t('@.use-os-default-emojis') }}</ui-switch> + <ui-switch v-model="useOsDefaultEmojis">{{ $t('@.use-os-default-emojis') }}</ui-switch> <ui-switch v-model="iLikeSushi">{{ $t('@.i-like-sushi') }}</ui-switch> <ui-switch v-model="disableAnimatedMfm">{{ $t('@.disable-animated-mfm') }}</ui-switch> <ui-switch v-model="alwaysShowNsfw">{{ $t('@.always-show-nsfw') }} ({{ $t('@.this-setting-is-this-device-only') }})</ui-switch> @@ -334,7 +335,7 @@ export default Vue.extend({ methods: { signout() { - this.$root.os.signout(); + this.$root.signout(); }, checkForUpdate() { |