Skip to content

Commit

Permalink
fix(ui): check if piptorun exist (#3153)
Browse files Browse the repository at this point in the history
Signed-off-by: Benjamin Coenen <[email protected]>
  • Loading branch information
bnjjj authored and fsamin committed Aug 7, 2018
1 parent 618d407 commit c119103
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -274,6 +274,9 @@ export class WorkflowNodeRunParamComponent {

private updateDefaultPipelineParameters() {
let pipToRun = Workflow.getPipeline(this.workflow, this._nodeToRun);
if (!pipToRun) {
return;
}

if (this._nodeToRun.context) {
this._nodeToRun.context.default_pipeline_parameters =
Expand Down

0 comments on commit c119103

Please sign in to comment.