diff --git a/apps/client/src/widgets/view_widgets/board_view/index.ts b/apps/client/src/widgets/view_widgets/board_view/index.ts index 9c2119f3f..c5ae51c46 100644 --- a/apps/client/src/widgets/view_widgets/board_view/index.ts +++ b/apps/client/src/widgets/view_widgets/board_view/index.ts @@ -408,6 +408,11 @@ export default class BoardView extends ViewMode { return true; } + // React to changes in note title. + if (loadResults.getNoteIds().some(noteId => this.noteIds.includes(noteId))) { + return true; + } + // React to changes in branches for subchildren (e.g., moved, added, or removed notes) if (loadResults.getBranchRows().some(branch => this.noteIds.includes(branch.noteId!))) { return true;