From 4631e6cd4a4b8bf2d8dcbb729058a3b47300f016 Mon Sep 17 00:00:00 2001 From: syuilo Date: Fri, 3 Nov 2023 17:18:30 +0900 Subject: fix(frontend): In deck layout, replies option is not saved after refresh Fix #12228 --- packages/frontend/src/ui/deck/tl-column.vue | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'packages/frontend/src/ui/deck/tl-column.vue') 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, -- cgit v1.2.3-freya