From f670345d450d2ac13448c56bc0aeb8dd5c3d84ef Mon Sep 17 00:00:00 2001 From: syuilo Date: Fri, 14 Sep 2018 20:33:27 +0900 Subject: ユーザー名のホストを省略しないオプションを実装 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/client/app/mobile/views/pages/settings.vue | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'src/client/app/mobile') diff --git a/src/client/app/mobile/views/pages/settings.vue b/src/client/app/mobile/views/pages/settings.vue index c93b3a50f1..9b0e521a4f 100644 --- a/src/client/app/mobile/views/pages/settings.vue +++ b/src/client/app/mobile/views/pages/settings.vue @@ -14,6 +14,7 @@ %i18n:@dark-mode% %i18n:@circle-icons% %i18n:@contrasted-acct% + %i18n:common.show-full-acct% %i18n:common.i-like-sushi% %i18n:common.disable-animated-mfm% %i18n:common.always-show-nsfw% (%i18n:common.this-setting-is-this-device-only%) @@ -232,6 +233,11 @@ export default Vue.extend({ set(value) { this.$store.dispatch('settings/set', { key: 'contrastedAcct', value }); } }, + showFullAcct: { + get() { return this.$store.state.settings.showFullAcct; }, + set(value) { this.$store.dispatch('settings/set', { key: 'showFullAcct', value }); } + }, + iLikeSushi: { get() { return this.$store.state.settings.iLikeSushi; }, set(value) { this.$store.dispatch('settings/set', { key: 'iLikeSushi', value }); } -- cgit v1.2.3-freya