mirror of
				https://github.com/zadam/trilium.git
				synced 2025-10-30 09:56:36 +01:00 
			
		
		
		
	fix clone notes dialog
This commit is contained in:
		| @@ -33,16 +33,6 @@ export default class DialogCommandExecutor extends Component { | ||||
|         import("../dialogs/markdown_import.js").then(d => d.importMarkdownInline()); | ||||
|     } | ||||
|  | ||||
|     async cloneNotesToCommand() { | ||||
|         // FIXME | ||||
|         const selectedOrActiveNodes = this.appContext.getMainNoteTree().getSelectedOrActiveNodes(); | ||||
|  | ||||
|         const noteIds = selectedOrActiveNodes.map(node => node.data.noteId); | ||||
|  | ||||
|         const d = await import("../dialogs/clone_to.js"); | ||||
|         d.showDialog(noteIds); | ||||
|     } | ||||
|  | ||||
|     async editBranchPrefixCommand() { | ||||
|         const notePath = this.appContext.tabManager.getActiveTabNotePath(); | ||||
|  | ||||
| @@ -56,6 +46,11 @@ export default class DialogCommandExecutor extends Component { | ||||
|         import("../dialogs/add_link.js").then(d => d.showDialog()); | ||||
|     } | ||||
|  | ||||
|     async cloneNoteIdsToCommand({noteIds}) { | ||||
|         const d = await import("../dialogs/clone_to.js"); | ||||
|         d.showDialog(noteIds); | ||||
|     } | ||||
|  | ||||
|     async moveBranchIdsToCommand({branchIds}) { | ||||
|         const d = await import("../dialogs/move_to.js"); | ||||
|         d.showDialog(branchIds); | ||||
|   | ||||
| @@ -617,6 +617,12 @@ export default class NoteTreeWidget extends TabAwareWidget { | ||||
|         this.reloadTreeFromCache(); | ||||
|     } | ||||
|  | ||||
|     async cloneNotesToCommand() { | ||||
|         const selectedOrActiveNoteIds = this.getSelectedOrActiveNodes().map(node => node.data.noteId); | ||||
|  | ||||
|         this.triggerCommand('cloneNoteIdsTo', {noteIds: selectedOrActiveNoteIds}); | ||||
|     } | ||||
|  | ||||
|     async moveNotesToCommand() { | ||||
|         const selectedOrActiveBranchIds = this.getSelectedOrActiveNodes().map(node => node.data.branchId); | ||||
|  | ||||
|   | ||||
		Reference in New Issue
	
	Block a user