From 8d3892757a3e1faaa8e9f162e7e06cec33b6e6ef Mon Sep 17 00:00:00 2001 From: Elian Doran Date: Sat, 15 Nov 2025 12:37:25 +0200 Subject: [PATCH] fix(board): not refreshing on status attribute change --- apps/client/src/widgets/collections/board/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/client/src/widgets/collections/board/index.tsx b/apps/client/src/widgets/collections/board/index.tsx index 811ae5d18..e34ef1225 100644 --- a/apps/client/src/widgets/collections/board/index.tsx +++ b/apps/client/src/widgets/collections/board/index.tsx @@ -98,7 +98,7 @@ export default function BoardView({ note: parentNote, noteIds, viewConfig, saveC }); } - useEffect(refresh, [ parentNote, noteIds, viewConfig ]); + useEffect(refresh, [ parentNote, noteIds, viewConfig, statusAttributeWithPrefix ]); const handleColumnDrop = useCallback((fromIndex: number, toIndex: number) => { const newColumns = api.reorderColumn(fromIndex, toIndex);