diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2018-12-30 14:05:13 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2018-12-30 14:05:13 +0900 |
| commit | b3032ad84d58ffc4f42bf9417da714c0541ca984 (patch) | |
| tree | fd2cb13a4c9f645a3e13db08c354096de28f8bd5 /src/client/app/desktop/views/components | |
| parent | :art: (diff) | |
| download | misskey-b3032ad84d58ffc4f42bf9417da714c0541ca984.tar.gz misskey-b3032ad84d58ffc4f42bf9417da714c0541ca984.tar.bz2 misskey-b3032ad84d58ffc4f42bf9417da714c0541ca984.zip | |
Better setting
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 8bdf1b19bd..23b7d78c9b 100644 --- a/src/client/app/desktop/views/components/settings.vue +++ b/src/client/app/desktop/views/components/settings.vue @@ -135,7 +135,7 @@ </section> <section> <ui-switch v-model="games_reversi_showBoardLabels">{{ $t('@.show-reversi-board-labels') }}</ui-switch> - <ui-switch v-model="games_reversi_useWhiteBlackStones">{{ $t('@.use-white-black-reversi-stones') }}</ui-switch> + <ui-switch v-model="games_reversi_useAvatarStones">{{ $t('@.use-avatar-reversi-stones') }}</ui-switch> </section> </ui-card> @@ -506,9 +506,9 @@ export default Vue.extend({ set(value) { this.$store.dispatch('settings/set', { key: 'games.reversi.showBoardLabels', value }); } }, - games_reversi_useWhiteBlackStones: { - get() { return this.$store.state.settings.games.reversi.useWhiteBlackStones; }, - set(value) { this.$store.dispatch('settings/set', { key: 'games.reversi.useWhiteBlackStones', value }); } + games_reversi_useAvatarStones: { + get() { return this.$store.state.settings.games.reversi.useAvatarStones; }, + set(value) { this.$store.dispatch('settings/set', { key: 'games.reversi.useAvatarStones', value }); } }, disableAnimatedMfm: { |