diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2020-07-12 00:12:30 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2020-07-12 00:12:30 +0900 |
| commit | 8ff2694cadd3ab3d51f96fc2ea3bbfde29475660 (patch) | |
| tree | 8b9a1ed4f86530efa90ed504345157ade98ba2b6 /src/client/store.ts | |
| parent | chore: Add TODO (diff) | |
| download | misskey-8ff2694cadd3ab3d51f96fc2ea3bbfde29475660.tar.gz misskey-8ff2694cadd3ab3d51f96fc2ea3bbfde29475660.tar.bz2 misskey-8ff2694cadd3ab3d51f96fc2ea3bbfde29475660.zip | |
feat(client): ミューテーション監視をやめてページリロードするように
Diffstat (limited to 'src/client/store.ts')
| -rw-r--r-- | src/client/store.ts | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/client/store.ts b/src/client/store.ts index 38994f90c7..d163e889c3 100644 --- a/src/client/store.ts +++ b/src/client/store.ts @@ -355,10 +355,6 @@ export default () => new Vuex.Store({ setUserData(state, x: { userId: string; data: any }) { state.userData[x.userId] = copy(x.data); }, - - setInfiniteScrollEnabling(state, x: boolean) { - state.enableInfiniteScroll = x; - }, } }, |