diff options
| author | syuilo <Syuilotan@yahoo.co.jp> | 2023-09-10 17:16:50 +0900 |
|---|---|---|
| committer | syuilo <Syuilotan@yahoo.co.jp> | 2023-09-10 17:16:50 +0900 |
| commit | 295665a177985e1f7c460e1de23b3d8a96afb2b0 (patch) | |
| tree | 33a87f4c3d2a46088f001fa31e8928921686f168 /packages/frontend/src/store.ts | |
| parent | enhance(frontend): add Ui:C:postForm to play (diff) | |
| download | misskey-295665a177985e1f7c460e1de23b3d8a96afb2b0.tar.gz misskey-295665a177985e1f7c460e1de23b3d8a96afb2b0.tar.bz2 misskey-295665a177985e1f7c460e1de23b3d8a96afb2b0.zip | |
enhance(frontend): リアクションの表示サイズをより大きくできるように
Diffstat (limited to 'packages/frontend/src/store.ts')
| -rw-r--r-- | packages/frontend/src/store.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/frontend/src/store.ts b/packages/frontend/src/store.ts index 2b7a16b6bb..787a584f83 100644 --- a/packages/frontend/src/store.ts +++ b/packages/frontend/src/store.ts @@ -316,9 +316,9 @@ export const defaultStore = markRaw(new Storage('base', { where: 'device', default: false, }, - largeNoteReactions: { + reactionsDisplaySize: { where: 'device', - default: false, + default: 'medium' as 'small' | 'medium' | 'large', }, forceShowAds: { where: 'device', |