From 7864168adc19f6ba6140e86ac61de5c77a39c744 Mon Sep 17 00:00:00 2001 From: Jakob Schlanstedt Date: Fri, 21 Nov 2025 09:39:45 +0100 Subject: [PATCH] fix(AttributeEditor): wrong order of Arguments --- apps/client/src/widgets/ribbon/components/AttributeEditor.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/client/src/widgets/ribbon/components/AttributeEditor.tsx b/apps/client/src/widgets/ribbon/components/AttributeEditor.tsx index 4315a1b27..74bdec6cd 100644 --- a/apps/client/src/widgets/ribbon/components/AttributeEditor.tsx +++ b/apps/client/src/widgets/ribbon/components/AttributeEditor.tsx @@ -256,8 +256,8 @@ export default function AttributeEditor({ api, note, componentId, notePath, ntxI const { note } = await note_create.createNoteFromAction( action, true, - parentNotePath, title, + parentNotePath, ); return note?.getBestNotePathString() ?? ""; }