summaryrefslogtreecommitdiff
path: root/app/views/projects/ci/pipelines/_pipeline.html.haml
diff options
context:
space:
mode:
authorKamil Trzcinski <ayufan@ayufan.eu>2016-11-15 15:20:37 +0100
committerKamil Trzcinski <ayufan@ayufan.eu>2016-12-06 14:13:21 +0100
commitfa1105b10b4f5dbce46bd72eb6374fe7f8d51f56 (patch)
treed67dbaee36c15d2300006a4bf7f11c39e2eaa250 /app/views/projects/ci/pipelines/_pipeline.html.haml
parent4e06818d330b4f15f334561500d506f0d24b9dfe (diff)
downloadgitlab-ce-fa1105b10b4f5dbce46bd72eb6374fe7f8d51f56.tar.gz
Fix broken pipeline rendering [ci skip]
Diffstat (limited to 'app/views/projects/ci/pipelines/_pipeline.html.haml')
-rw-r--r--app/views/projects/ci/pipelines/_pipeline.html.haml13
1 files changed, 5 insertions, 8 deletions
diff --git a/app/views/projects/ci/pipelines/_pipeline.html.haml b/app/views/projects/ci/pipelines/_pipeline.html.haml
index d42df00b47f..e4a963a278c 100644
--- a/app/views/projects/ci/pipelines/_pipeline.html.haml
+++ b/app/views/projects/ci/pipelines/_pipeline.html.haml
@@ -43,16 +43,13 @@
- else
Cant find HEAD commit for this branch
- - stages_status = pipeline.statuses.latest.stages_status
%td.stage-cell
- - pipeline.statuses.latest.stages_status.each do |stage|
- - name = stage.first
- - status = stage.last
- - tooltip = "#{name.titleize}: #{status || 'not found'}"
- - if status
+ - pipeline.stages_with_statuses.each do |stage|
+ - if stage.status
+ - tooltip = "#{stage.name.titleize}: #{stage.status || 'not found'}"
.stage-container
- = link_to namespace_project_pipeline_path(pipeline.project.namespace, pipeline.project, pipeline.id, anchor: stage), class: "has-tooltip ci-status-icon-#{status}", title: tooltip do
- = ci_icon_for_status(status)
+ = link_to namespace_project_pipeline_path(pipeline.project.namespace, pipeline.project, pipeline.id, anchor: stage.name), class: "has-tooltip ci-status-icon-#{stage.status}", title: tooltip do
+ = ci_icon_for_status(stage.status)
%td
- if pipeline.duration