summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsyuilo <Syuilotan@yahoo.co.jp>2023-11-03 17:18:30 +0900
committersyuilo <Syuilotan@yahoo.co.jp>2023-11-03 17:18:30 +0900
commit4631e6cd4a4b8bf2d8dcbb729058a3b47300f016 (patch)
tree30dc7271964eaad2f43f7cad71d8481f87daaffd
parentenhance(frontend): tweak announcement manage ui (diff)
downloadsharkey-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.md1
-rw-r--r--packages/frontend/src/ui/deck/tl-column.vue6
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,