diff --git a/apps/client/src/widgets/type_widgets/text/EditableText.tsx b/apps/client/src/widgets/type_widgets/text/EditableText.tsx index ad5c1a9aa..4760e1e74 100644 --- a/apps/client/src/widgets/type_widgets/text/EditableText.tsx +++ b/apps/client/src/widgets/type_widgets/text/EditableText.tsx @@ -154,7 +154,9 @@ export default function EditableText({ note, parentComponent, ntxId, noteContext // without await as this otherwise causes deadlock through component mutex const parentNotePath = appContext.tabManager.getActiveContextNotePath(); if (noteContext && parentNotePath) { - note_create.createNote(parentNotePath, { + note_create.createNote({ + parentNoteLink: parentNotePath, + target: "into", isProtected: note.isProtected, saveSelection: true, textEditor: await noteContext?.getTextEditor()