mirror of
https://github.com/zadam/trilium.git
synced 2024-11-11 18:08:13 +08:00
rename var so it's not misleading
(cherry picked from commit dd147a7209
)
This commit is contained in:
parent
5063cfb979
commit
adae0625b9
1 changed files with 2 additions and 2 deletions
|
@ -209,11 +209,11 @@ function BackendScriptApi(currentNote, apiParams) {
|
||||||
* @returns {Promise<{note: Note, branch: Branch}>} object contains newly created entities note and branch
|
* @returns {Promise<{note: Note, branch: Branch}>} object contains newly created entities note and branch
|
||||||
*/
|
*/
|
||||||
this.createNoteAndRefresh = async function(parentNoteId, title, content, extraOptions) {
|
this.createNoteAndRefresh = async function(parentNoteId, title, content, extraOptions) {
|
||||||
const note = await noteService.createNote(parentNoteId, title, content, extraOptions);
|
const ret = await noteService.createNote(parentNoteId, title, content, extraOptions);
|
||||||
|
|
||||||
ws.refreshTree();
|
ws.refreshTree();
|
||||||
|
|
||||||
return note;
|
return ret;
|
||||||
};
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in a new issue