fix duplication of hoisted note tree when hoisted note has clones

This commit is contained in:
zadam 2021-03-04 23:19:27 +01:00
parent bf0fbe201e
commit 060d4fc27b

View file

@ -1210,7 +1210,7 @@ export default class NoteTreeWidget extends TabAwareWidget {
this.tree.clearFilter();
}
else {
let found = false;
let found = false;console.log(this.tabContext.notePath, this.tabContext.hoistedNoteId, "ZZZ");
// hack when hoisted note is cloned then it could be filtered multiple times while we want only 1
this.tree.filterBranches(node => {
@ -1218,7 +1218,9 @@ export default class NoteTreeWidget extends TabAwareWidget {
return false;
}
return found = (node.data.noteId === this.tabContext.hoistedNoteId);
found = node.data.noteId === this.tabContext.hoistedNoteId;
return found;
});
}
}