From 4e04012499f8c42be7605533fc77240d88daeb3a Mon Sep 17 00:00:00 2001 From: mvdbeek Date: Mon, 18 Mar 2024 09:49:43 +0100 Subject: [PATCH] Fix parameter_input step type --- client/src/api/schema/schema.ts | 2 +- lib/galaxy/schema/schema.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/client/src/api/schema/schema.ts b/client/src/api/schema/schema.ts index 2f41a56da3b0..6f7aac5f9e88 100644 --- a/client/src/api/schema/schema.ts +++ b/client/src/api/schema/schema.ts @@ -6938,7 +6938,7 @@ export interface components { * Type * @constant */ - type: "parameter"; + type: "parameter_input"; /** When */ when: string | null; }; diff --git a/lib/galaxy/schema/schema.py b/lib/galaxy/schema/schema.py index ab2e22909ca6..40e076fd778c 100644 --- a/lib/galaxy/schema/schema.py +++ b/lib/galaxy/schema/schema.py @@ -2236,7 +2236,7 @@ class InputDataCollectionStep(WorkflowStepBase): class InputParameterStep(WorkflowStepBase): - type: Literal["parameter"] + type: Literal["parameter_input"] class PauseStep(WorkflowStepBase):