diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2019-02-05 04:09:44 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2019-02-05 04:09:44 +0900 |
| commit | dd39d6ea37443512a6c62c3e5fcbeb75ddf557a8 (patch) | |
| tree | 7e264e7d97b5b40d94639a9229b4924e3680e21c /src/client/app/desktop/views/components | |
| parent | [Client] Increase font size a little in the Deck view (diff) | |
| download | misskey-dd39d6ea37443512a6c62c3e5fcbeb75ddf557a8.tar.gz misskey-dd39d6ea37443512a6c62c3e5fcbeb75ddf557a8.tar.bz2 misskey-dd39d6ea37443512a6c62c3e5fcbeb75ddf557a8.zip | |
Better key name
Diffstat (limited to 'src/client/app/desktop/views/components')
| -rw-r--r-- | src/client/app/desktop/views/components/settings.vue | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/client/app/desktop/views/components/settings.vue b/src/client/app/desktop/views/components/settings.vue index be0244ee00..76d99ee3c0 100644 --- a/src/client/app/desktop/views/components/settings.vue +++ b/src/client/app/desktop/views/components/settings.vue @@ -117,7 +117,7 @@ <ui-switch v-model="showReplyTarget">{{ $t('show-reply-target') }}</ui-switch> <ui-switch v-model="showMaps">{{ $t('show-maps') }}</ui-switch> <ui-switch v-model="disableAnimatedMfm">{{ $t('@.disable-animated-mfm') }}</ui-switch> - <ui-switch v-model="doNotAutoplayAnimation">{{ $t('@.do-not-autoplay-animation') }}</ui-switch> + <ui-switch v-model="disableShowingAnimatedImages">{{ $t('@.disable-showing-animated-images') }}</ui-switch> <ui-switch v-model="remainDeletedNote">{{ $t('remain-deleted-note') }}</ui-switch> </section> <section> @@ -517,9 +517,9 @@ export default Vue.extend({ set(value) { this.$store.dispatch('settings/set', { key: 'disableAnimatedMfm', value }); } }, - doNotAutoplayAnimation: { - get() { return this.$store.state.device.doNotAutoplayAnimation; }, - set(value) { this.$store.commit('device/set', { key: 'doNotAutoplayAnimation', value }); } + disableShowingAnimatedImages: { + get() { return this.$store.state.device.disableShowingAnimatedImages; }, + set(value) { this.$store.commit('device/set', { key: 'disableShowingAnimatedImages', value }); } }, remainDeletedNote: { |