diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2020-07-13 23:29:30 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2020-07-13 23:29:30 +0900 |
| commit | 0a285738458518df6b888e8d10d57c948d6f061a (patch) | |
| tree | 32a376cc4058d45c7d5b367033f10b9aabba2e6d /src/client | |
| parent | fix(client): Fix sticky sidebar behavior (diff) | |
| download | misskey-0a285738458518df6b888e8d10d57c948d6f061a.tar.gz misskey-0a285738458518df6b888e8d10d57c948d6f061a.tar.bz2 misskey-0a285738458518df6b888e8d10d57c948d6f061a.zip | |
chore: Add note
Diffstat (limited to 'src/client')
| -rw-r--r-- | src/client/store.ts | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/client/store.ts b/src/client/store.ts index a930e66ed7..c7b8e84e9d 100644 --- a/src/client/store.ts +++ b/src/client/store.ts @@ -302,6 +302,7 @@ export default () => new Vuex.Store({ }, mergeMe(ctx, me) { + // TODO: プロパティ一つ一つに対してコミットが発生するのはアレなので良い感じにする for (const [key, value] of Object.entries(me)) { ctx.commit('updateIKeyValue', { key, value }); } |