chore(react/collections/table): bring back refresh

This commit is contained in:
Elian Doran
2025-09-11 18:13:31 +03:00
parent d9af0461ef
commit e10475679b
2 changed files with 10 additions and 14 deletions

View File

@@ -151,7 +151,7 @@
} }
.board-view-container .board-note.shift-down { .board-view-container .board-note.shift-down {
margin-top: 45px; transform: translateY(100%);
} }
.board-view-container .board-note.editing { .board-view-container .board-note.editing {

View File

@@ -46,9 +46,6 @@ export default function BoardView({ note: parentNote, noteIds, viewConfig, saveC
useEffect(refresh, [ parentNote, noteIds ]); useEffect(refresh, [ parentNote, noteIds ]);
useTriliumEvent("entitiesReloaded", ({ loadResults }) => { useTriliumEvent("entitiesReloaded", ({ loadResults }) => {
// TODO: Re-enable
return;
// Check if any changes affect our board // Check if any changes affect our board
const hasRelevantChanges = const hasRelevantChanges =
// React to changes in status attribute for notes in this board // React to changes in status attribute for notes in this board
@@ -65,7 +62,6 @@ export default function BoardView({ note: parentNote, noteIds, viewConfig, saveC
loadResults.getAttributeRows().some(attr => attr.name === "board:groupBy" && attr.noteId === parentNote.noteId); loadResults.getAttributeRows().some(attr => attr.name === "board:groupBy" && attr.noteId === parentNote.noteId);
if (hasRelevantChanges) { if (hasRelevantChanges) {
console.log("Trigger refresh");
refresh(); refresh();
} }
}); });