diff options
| author | Aya Morisawa <AyaMorisawa4869@gmail.com> | 2018-12-05 18:44:57 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-12-05 18:44:57 +0900 |
| commit | dc8f4c8d6a255c460464729e9cf1d420e40b8808 (patch) | |
| tree | a7f7c16bc97e095271bf045e2b088541edb27c54 /src | |
| parent | [MFM] Add italic syntax (diff) | |
| download | misskey-dc8f4c8d6a255c460464729e9cf1d420e40b8808.tar.gz misskey-dc8f4c8d6a255c460464729e9cf1d420e40b8808.tar.bz2 misskey-dc8f4c8d6a255c460464729e9cf1d420e40b8808.zip | |
Fix #3341 (#3502)
Diffstat (limited to 'src')
| -rw-r--r-- | src/client/app/desktop/views/components/settings.vue | 2 | ||||
| -rw-r--r-- | src/client/app/mobile/views/pages/settings.vue | 6 |
2 files changed, 7 insertions, 1 deletions
diff --git a/src/client/app/desktop/views/components/settings.vue b/src/client/app/desktop/views/components/settings.vue index 9cb28eb860..4b2345fb26 100644 --- a/src/client/app/desktop/views/components/settings.vue +++ b/src/client/app/desktop/views/components/settings.vue @@ -112,7 +112,7 @@ <ui-switch v-model="iLikeSushi">{{ $t('@.i-like-sushi') }}</ui-switch> </section> <section> - <ui-switch v-model="suggestRecentHashtags">{{ $t('suggest-recent-hashtags') }}</ui-switch> + <ui-switch v-model="suggestRecentHashtags">{{ $t('@.suggest-recent-hashtags') }}</ui-switch> <ui-switch v-model="showClockOnHeader">{{ $t('show-clock-on-header') }}</ui-switch> <ui-switch v-model="alwaysShowNsfw">{{ $t('@.always-show-nsfw') }}</ui-switch> <ui-switch v-model="showReplyTarget">{{ $t('show-reply-target') }}</ui-switch> diff --git a/src/client/app/mobile/views/pages/settings.vue b/src/client/app/mobile/views/pages/settings.vue index 3e048a1989..b66ef69c5c 100644 --- a/src/client/app/mobile/views/pages/settings.vue +++ b/src/client/app/mobile/views/pages/settings.vue @@ -27,6 +27,7 @@ <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="suggestRecentHashtags">{{ $t('@.suggest-recent-hashtags') }}</ui-switch> <ui-switch v-model="alwaysShowNsfw">{{ $t('@.always-show-nsfw') }} ({{ $t('@.this-setting-is-this-device-only') }})</ui-switch> </section> @@ -201,6 +202,11 @@ export default Vue.extend({ set(value) { this.$store.commit('device/set', { key: 'reduceMotion', value }); } }, + suggestRecentHashtags: { + get() { return this.$store.state.settings.suggestRecentHashtags; }, + set(value) { this.$store.commit('device/set', { key: 'suggestRecentHashtags', value }); } + }, + alwaysShowNsfw: { get() { return this.$store.state.device.alwaysShowNsfw; }, set(value) { this.$store.commit('device/set', { key: 'alwaysShowNsfw', value }); } |