Skip to content

Commit

Permalink
Merge pull request #17767 from mvdbeek/fix_input_parameter_step_type
Browse files Browse the repository at this point in the history
[24.0] Fix input parameter step type
  • Loading branch information
nsoranzo authored Mar 18, 2024
2 parents 44b77b1 + 4e04012 commit be2201f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion client/src/api/schema/schema.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6938,7 +6938,7 @@ export interface components {
* Type
* @constant
*/
type: "parameter";
type: "parameter_input";
/** When */
when: string | null;
};
Expand Down
2 changes: 1 addition & 1 deletion lib/galaxy/schema/schema.py
Original file line number Diff line number Diff line change
Expand Up @@ -2236,7 +2236,7 @@ class InputDataCollectionStep(WorkflowStepBase):


class InputParameterStep(WorkflowStepBase):
type: Literal["parameter"]
type: Literal["parameter_input"]


class PauseStep(WorkflowStepBase):
Expand Down

0 comments on commit be2201f

Please sign in to comment.