mirror of
				https://github.com/zadam/trilium.git
				synced 2025-10-31 10:26:08 +01:00 
			
		
		
		
	new split should keep the hoisted note
This commit is contained in:
		| @@ -35,13 +35,17 @@ export default class SplitNoteContainer extends FlexContainer { | |||||||
|     } |     } | ||||||
|  |  | ||||||
|     async openNewNoteSplitEvent({ntxId, notePath}) { |     async openNewNoteSplitEvent({ntxId, notePath}) { | ||||||
|  |         const mainNtxId = appContext.tabManager.getActiveMainContext().ntxId; | ||||||
|  |  | ||||||
|         if (!ntxId) { |         if (!ntxId) { | ||||||
|             logError("empty ntxId!"); |             logError("empty ntxId!"); | ||||||
|  |  | ||||||
|             ntxId = appContext.tabManager.getActiveMainContext().ntxId; |             ntxId = mainNtxId; | ||||||
|         } |         } | ||||||
|  |  | ||||||
|         const noteContext = await appContext.tabManager.openEmptyTab(null, 'root', appContext.tabManager.getActiveMainContext().ntxId); |         const hoistedNoteId = appContext.tabManager.getActiveContext().hoistedNoteId; | ||||||
|  |  | ||||||
|  |         const noteContext = await appContext.tabManager.openEmptyTab(null, hoistedNoteId, mainNtxId); | ||||||
|  |  | ||||||
|         // remove the original position of newly created note context |         // remove the original position of newly created note context | ||||||
|         const ntxIds = appContext.tabManager.children.map(c => c.ntxId) |         const ntxIds = appContext.tabManager.children.map(c => c.ntxId) | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user