mirror of
				https://github.com/zadam/trilium.git
				synced 2025-10-31 18:36:30 +01:00 
			
		
		
		
	when opening a note from hidden subtree, make sure we're hoisted
This commit is contained in:
		| @@ -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"); | ||||
|   | ||||
		Reference in New Issue
	
	Block a user