Skip to content

Commit

Permalink
feat: Always Show Workflow Parameters
Browse files Browse the repository at this point in the history
 - Fixes #7311

Signed-off-by: Kenny Trytek <kenneth.g.trytek@gmail.com>
  • Loading branch information
kennytrytek committed Apr 5, 2022
1 parent 0221310 commit 44da063
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ui/src/app/workflows/components/submit-workflow-panel.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ export class SubmitWorkflowPanel extends React.Component<Props, State> {
entrypoints: this.props.templates.map(t => t.name),
selectedTemplate: defaultTemplate,
parameters: [] as Parameter[],
workflowParameters: this.props.workflowParameters,
workflowParameters: JSON.parse(JSON.stringify(this.props.workflowParameters)),
templates: [defaultTemplate].concat(this.props.templates),
labels: ['submit-from-ui=true'],
isSubmitting: false
Expand Down

0 comments on commit 44da063

Please sign in to comment.