diff options
| author | syuilo <Syuilotan@yahoo.co.jp> | 2023-11-03 17:18:30 +0900 |
|---|---|---|
| committer | syuilo <Syuilotan@yahoo.co.jp> | 2023-11-03 17:18:30 +0900 |
| commit | 4631e6cd4a4b8bf2d8dcbb729058a3b47300f016 (patch) | |
| tree | 30dc7271964eaad2f43f7cad71d8481f87daaffd | |
| parent | enhance(frontend): tweak announcement manage ui (diff) | |
| download | sharkey-4631e6cd4a4b8bf2d8dcbb729058a3b47300f016.tar.gz sharkey-4631e6cd4a4b8bf2d8dcbb729058a3b47300f016.tar.bz2 sharkey-4631e6cd4a4b8bf2d8dcbb729058a3b47300f016.zip | |
fix(frontend): In deck layout, replies option is not saved after refresh
Fix #12228
| -rw-r--r-- | CHANGELOG.md | 1 | ||||
| -rw-r--r-- | packages/frontend/src/ui/deck/tl-column.vue | 6 |
2 files changed, 7 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 4fdf9687ec..c99410696d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -55,6 +55,7 @@ - Fix: 個人カードのemojiがバッテリーになっている問題を修正 - Fix: 標準テーマと同じIDを使用してインストールできてしまう問題を修正 - Fix: 絵文字ピッカーでバッテリーの絵文字が複数表示される問題を修正 #12197 +- Fix: In deck layout, replies option is not saved after refresh ### Server - Feat: Registry APIがサードパーティから利用可能になりました diff --git a/packages/frontend/src/ui/deck/tl-column.vue b/packages/frontend/src/ui/deck/tl-column.vue index bab93622f0..c5629f69a4 100644 --- a/packages/frontend/src/ui/deck/tl-column.vue +++ b/packages/frontend/src/ui/deck/tl-column.vue @@ -61,6 +61,12 @@ watch($$(withRenotes), v => { }); }); +watch($$(withReplies), v => { + updateColumn(props.column.id, { + withReplies: v, + }); +}); + watch($$(onlyFiles), v => { updateColumn(props.column.id, { onlyFiles: v, |