diff options
| author | tamaina <tamaina@hotmail.co.jp> | 2024-03-09 04:10:21 +0000 |
|---|---|---|
| committer | tamaina <tamaina@hotmail.co.jp> | 2024-03-09 04:10:21 +0000 |
| commit | 45d1af23bb33f8247da8760cb70d051b9c5aa077 (patch) | |
| tree | 1c68e28032e5d48ecbddfddff0c1cf30b6c06792 /packages/frontend/src/store.ts | |
| parent | chore(backend): validateNoteの結果Errorはそのままthrowする (diff) | |
| parent | enhance(frontend): リアクションの総数を表示するか設定で選... (diff) | |
| download | misskey-45d1af23bb33f8247da8760cb70d051b9c5aa077.tar.gz misskey-45d1af23bb33f8247da8760cb70d051b9c5aa077.tar.bz2 misskey-45d1af23bb33f8247da8760cb70d051b9c5aa077.zip | |
Merge branch 'develop' of https://github.com/misskey-dev/misskey into develop
Diffstat (limited to 'packages/frontend/src/store.ts')
| -rw-r--r-- | packages/frontend/src/store.ts | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/packages/frontend/src/store.ts b/packages/frontend/src/store.ts index dfc4169a54..a335ed33bb 100644 --- a/packages/frontend/src/store.ts +++ b/packages/frontend/src/store.ts @@ -227,6 +227,10 @@ export const defaultStore = markRaw(new Storage('base', { where: 'device', default: true, }, + showReactionsCount: { + where: 'device', + default: false, + }, enableQuickAddMfmFunction: { where: 'device', default: false, @@ -431,10 +435,10 @@ export const defaultStore = markRaw(new Storage('base', { sfxVolume: 1, }, }, - hemisphere: { + hemisphere: { where: 'device', default: hemisphere as 'N' | 'S', - }, + }, enableHorizontalSwipe: { where: 'device', default: true, |