when opening a note from hidden subtree, make sure we're hoisted

This commit is contained in:
zadam 2022-12-08 23:36:49 +01:00
parent 8d6801bb85
commit c44bc60667

View File

@ -59,6 +59,22 @@ class NoteContext extends Component {
});
}
console.log(resolvedNotePath, "resolvedNotePath");
if (this.hoistedNoteId === 'root' && this.notePath.startsWith("root/hidden")) {
// hidden subtree displays only when hoisted so it doesn't make sense to keep root as hoisted note
let hoistedNoteId = 'hidden';
if (this.note.isLaunchBarConfig()) {
hoistedNoteId = 'lbRoot';
} else if (this.note.isOptions()) {
hoistedNoteId = 'options';
}
await this.setHoistedNoteId(hoistedNoteId);
}
if (utils.isDesktop()) {
// close dangling autocompletes after closing the tab
$(".aa-input").autocomplete("close");