diff options
| author | かっこかり <67428053+kakkokari-gtyih@users.noreply.github.com> | 2023-11-26 13:04:44 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-11-26 13:04:44 +0900 |
| commit | 5bdae9f6d03bbb1fc1cf341b2e6b3e5d15d03fad (patch) | |
| tree | 70dff15751b9796067de64cb667a026edd41bf97 /packages/frontend/src/store.ts | |
| parent | fix: query error in notes/featured (#12439) (diff) | |
| download | misskey-5bdae9f6d03bbb1fc1cf341b2e6b3e5d15d03fad.tar.gz misskey-5bdae9f6d03bbb1fc1cf341b2e6b3e5d15d03fad.tar.bz2 misskey-5bdae9f6d03bbb1fc1cf341b2e6b3e5d15d03fad.zip | |
enhance(frontend): リアクション選択時に音を流せるように (#12441)
* (add) リアクション選択時に音を鳴らせるように
* Update Changelog
* tweak sound
* tweak sound
---------
Co-authored-by: syuilo <Syuilotan@yahoo.co.jp>
Diffstat (limited to 'packages/frontend/src/store.ts')
| -rw-r--r-- | packages/frontend/src/store.ts | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/packages/frontend/src/store.ts b/packages/frontend/src/store.ts index 12660e9e8d..f2ed4e7c0b 100644 --- a/packages/frontend/src/store.ts +++ b/packages/frontend/src/store.ts @@ -411,6 +411,10 @@ export const defaultStore = markRaw(new Storage('base', { where: 'device', default: { type: 'syuilo/square-pico', volume: 1 }, }, + sound_reaction: { + where: 'device', + default: { type: 'syuilo/bubble2', volume: 1 }, + }, })); // TODO: 他のタブと永続化されたstateを同期 |