mirror of
https://github.com/zadam/trilium.git
synced 2025-11-15 17:55:52 +01:00
feat(views/board): react to changes in note title
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user