From b4fa112107b33f407ea3d0636209dba7cb671a46 Mon Sep 17 00:00:00 2001 From: SpliiT Date: Fri, 17 Apr 2026 14:28:54 +0200 Subject: [PATCH 1/2] fix(ScrollStepper): Scroll stepper --- app/components/Stepper.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/components/Stepper.vue b/app/components/Stepper.vue index 3556b91c..6d7edfbf 100644 --- a/app/components/Stepper.vue +++ b/app/components/Stepper.vue @@ -22,7 +22,7 @@ const { steps, current_step_index } = toRefs(stepper_tree); @update:model-value="current_step_index = $event - 1" flat non-linear - class="pa-0 ma-0 bg-transparent rounded-xl overflow-hidden custom-stepper flex-grow-1" + class="pa-0 ma-0 bg-transparent rounded-xl overflow-y-auto custom-stepper flex-grow-1" > Date: Fri, 17 Apr 2026 15:58:37 +0200 Subject: [PATCH 2/2] fix issue 403 from vease --- app/composables/project_manager.js | 2 +- app/utils/{file_import_workflow.js => import_workflow.js} | 0 tests/integration/setup.js | 2 +- 3 files changed, 2 insertions(+), 2 deletions(-) rename app/utils/{file_import_workflow.js => import_workflow.js} (100%) diff --git a/app/composables/project_manager.js b/app/composables/project_manager.js index aeae3437..69f79c43 100644 --- a/app/composables/project_manager.js +++ b/app/composables/project_manager.js @@ -2,7 +2,7 @@ import back_schemas from "@geode/opengeodeweb-back/opengeodeweb_back_schemas.jso import fileDownload from "js-file-download"; import viewer_schemas from "@geode/opengeodeweb-viewer/opengeodeweb_viewer_schemas.json"; -import { importWorkflowFromSnapshot } from "@ogw_front/utils/file_import_workflow"; +import { importWorkflowFromSnapshot } from "@ogw_front/utils/import_workflow"; import { useAppStore } from "@ogw_front/stores/app"; import { useDataStore } from "@ogw_front/stores/data"; diff --git a/app/utils/file_import_workflow.js b/app/utils/import_workflow.js similarity index 100% rename from app/utils/file_import_workflow.js rename to app/utils/import_workflow.js diff --git a/tests/integration/setup.js b/tests/integration/setup.js index e79cc62f..33afc24b 100644 --- a/tests/integration/setup.js +++ b/tests/integration/setup.js @@ -10,7 +10,7 @@ import { addMicroserviceMetadatas, runBack, runViewer } from "@ogw_front/utils/l import { createPath, generateProjectFolderPath } from "@ogw_front/utils/local/path"; import { Status } from "@ogw_front/utils/status"; import { appMode } from "@ogw_front/utils/local/app_mode"; -import { importFile } from "@ogw_front/utils/file_import_workflow"; +import { importFile } from "@ogw_front/utils/import_workflow"; import { setupActivePinia } from "@ogw_tests/utils"; import { useGeodeStore } from "@ogw_front/stores/geode"; import { useInfraStore } from "@ogw_front/stores/infra";