diff --git a/src/public/app/widgets/note_tree.js b/src/public/app/widgets/note_tree.js index 93a070fd7b..43d2ee8f8e 100644 --- a/src/public/app/widgets/note_tree.js +++ b/src/public/app/widgets/note_tree.js @@ -831,6 +831,8 @@ export default class NoteTreeWidget extends NoteContextAwareWidget { } }); + await this.filterHoistedBranch(); + const activeNode = await this.getNodeFromPath(appContext.tabManager.getActiveContextNotePath()); if (activeNode) { @@ -1078,6 +1080,8 @@ export default class NoteTreeWidget extends NoteContextAwareWidget { } } }, false); + + this.filterHoistedBranch(); }, 600 * 1000); }