mirror of
https://github.com/misskey-dev/misskey.git
synced 2026-06-08 14:24:16 +02:00
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