From 0428f701bfcb9eca677591b9b191d8fc6bc84ea7 Mon Sep 17 00:00:00 2001 From: DIDIRUS4 Date: Wed, 4 Sep 2024 18:51:37 +0300 Subject: [PATCH] Fix import from file --- apps/app-frontend/src/components/ui/InstanceCreationModal.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/app-frontend/src/components/ui/InstanceCreationModal.vue b/apps/app-frontend/src/components/ui/InstanceCreationModal.vue index e439c203..131393ea 100644 --- a/apps/app-frontend/src/components/ui/InstanceCreationModal.vue +++ b/apps/app-frontend/src/components/ui/InstanceCreationModal.vue @@ -417,7 +417,7 @@ const openFile = async () => { const newProject = await open({ multiple: false }) if (!newProject) return hide() - await install_from_file(newProject.path).catch(handleError) + await install_from_file(newProject).catch(handleError) trackEvent('InstanceCreate', { source: 'CreationModalFileOpen',