feat(client): ミューテーション監視をやめてページリロードするように
This commit is contained in:
@@ -201,7 +201,7 @@ export default Vue.extend({
|
||||
|
||||
enableInfiniteScroll: {
|
||||
get() { return this.$store.state.device.enableInfiniteScroll; },
|
||||
set(value) { this.$store.commit('device/setInfiniteScrollEnabling', value); }
|
||||
set(value) { this.$store.commit('device/set', { key: 'enableInfiniteScroll', value }); }
|
||||
},
|
||||
|
||||
fixedWidgetsPosition: {
|
||||
@@ -294,6 +294,10 @@ export default Vue.extend({
|
||||
fixedWidgetsPosition() {
|
||||
location.reload()
|
||||
},
|
||||
|
||||
enableInfiniteScroll() {
|
||||
location.reload()
|
||||
},
|
||||
},
|
||||
|
||||
methods: {
|
||||
|
Reference in New Issue
Block a user