Skip to content

Commit

Permalink
fix(ui): no jobs in runjobs (#5119)
Browse files Browse the repository at this point in the history
  • Loading branch information
sguiheux authored Apr 9, 2020
1 parent 2f7acdc commit 7cba277
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ui/src/app/views/workflow/run/node/pipeline/pipeline.html
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<ul>
<li *ngFor="let j of stage.jobs">
<div class="job ui segment pointing"
[class.active]="currentJob.pipeline_action_id === j.pipeline_action_id"
[class.active]="currentJob?.pipeline_action_id === j.pipeline_action_id"
[class.success]="mapJobStatus?.get(j.pipeline_action_id) && mapJobStatus?.get(j.pipeline_action_id).status === pipelineStatusEnum.SUCCESS"
[class.inactive]="mapJobStatus?.get(j.pipeline_action_id) && (mapJobStatus?.get(j.pipeline_action_id).status === pipelineStatusEnum.DISABLED || mapJobStatus?.get(j.pipeline_action_id).status === pipelineStatusEnum.SKIPPED)"
[class.fail]="mapJobStatus?.get(j.pipeline_action_id) && mapJobStatus?.get(j.pipeline_action_id).status === pipelineStatusEnum.FAIL"
Expand Down

0 comments on commit 7cba277

Please sign in to comment.