feat(views/board): react to changes in note title

This commit is contained in:
Elian Doran
2025-07-19 21:50:57 +03:00
parent 657df7a728
commit 9e3372df72

View File

@@ -408,6 +408,11 @@ export default class BoardView extends ViewMode<StateInfo> {
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;