fix copying template's content, closes #943

This commit is contained in:
zadam 2020-04-05 12:28:16 +02:00
parent 42128c007f
commit 8d7687f354

View File

@ -122,10 +122,10 @@ async function createNewNote(params) {
isExpanded: !!params.isExpanded
}).save();
await copyChildAttributes(parentNote, note);
await scanForLinks(note);
await copyChildAttributes(parentNote, note);
await triggerNoteTitleChanged(note);
await triggerChildNoteCreated(note, parentNote);