fix(frontend): In deck layout, replies option is not saved after refresh

Fix #12228
This commit is contained in:
syuilo 2023-11-03 17:18:30 +09:00
parent ee191169f5
commit 4631e6cd4a
2 changed files with 7 additions and 0 deletions

View file

@ -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がサードパーティから利用可能になりました

View file

@ -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,