mirror of
				https://github.com/zadam/trilium.git
				synced 2025-10-31 18:36:30 +01:00 
			
		
		
		
	fix backend API's getNote, getBranch, getAttribute, closes #2230
This commit is contained in:
		| @@ -58,21 +58,21 @@ function BackendScriptApi(currentNote, apiParams) { | ||||
|      * @param {string} noteId | ||||
|      * @returns {Note|null} | ||||
|      */ | ||||
|     this.getNote = becca.getNote; | ||||
|     this.getNote = noteId => becca.getNote(noteId); | ||||
|  | ||||
|     /** | ||||
|      * @method | ||||
|      * @param {string} branchId | ||||
|      * @returns {Branch|null} | ||||
|      */ | ||||
|     this.getBranch = becca.getBranch; | ||||
|     this.getBranch = branchId => becca.getBranch(branchId); | ||||
|  | ||||
|     /** | ||||
|      * @method | ||||
|      * @param {string} attributeId | ||||
|      * @returns {Attribute|null} | ||||
|      */ | ||||
|     this.getAttribute = becca.getAttribute; | ||||
|     this.getAttribute = attributeId => becca.getAttribute(attributeId); | ||||
|  | ||||
|     /** | ||||
|      * This is a powerful search method - you can search by attributes and their values, e.g.: | ||||
|   | ||||
		Reference in New Issue
	
	Block a user