feat(editor): Add functionality to create folders (#13473)

This commit is contained in:
Milorad FIlipović
2025-02-28 15:50:50 +01:00
committed by GitHub
parent f381a24145
commit 2cb9d9e29f
21 changed files with 961 additions and 319 deletions

View File

@@ -72,6 +72,8 @@ const save = async (): Promise<void> => {
return;
}
const parentFolderId = router.currentRoute.value.params.folderId as string | undefined;
const currentWorkflowId = props.data.id;
isSaving.value = true;
@@ -102,6 +104,7 @@ const save = async (): Promise<void> => {
resetWebhookUrls: true,
openInNewWindow: true,
resetNodeIds: true,
parentFolderId,
});
if (saved) {