Skip to content

Commit

Permalink
Fix parameter_input step type
Browse files Browse the repository at this point in the history
  • Loading branch information
mvdbeek committed Mar 18, 2024
1 parent 3ebf8eb commit 4e04012
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 4e04012

Please sign in to comment.