fix(board): not refreshing on status attribute change

This commit is contained in:
Elian Doran 2025-11-15 12:37:25 +02:00
parent a8992d08b3
commit 8d3892757a
No known key found for this signature in database

View File

@ -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 handleColumnDrop = useCallback((fromIndex: number, toIndex: number) => {
const newColumns = api.reorderColumn(fromIndex, toIndex); const newColumns = api.reorderColumn(fromIndex, toIndex);