diff options
author | Tim Zallmann <tzallmann@gitlab.com> | 2017-11-07 16:32:21 +0000 |
---|---|---|
committer | Tim Zallmann <tzallmann@gitlab.com> | 2017-11-07 16:32:21 +0000 |
commit | cc175278467118585e86a8a425715a4e5ae62c95 (patch) | |
tree | c16f84140d4eb8004b0b718dc321f69c1ac0889d /app | |
parent | a3e1cb8187a4e2b926e8496af4a9ea80c91d491a (diff) | |
parent | 091f6387e4a9602e3213bbcfff1d51209d7efed4 (diff) | |
download | gitlab-ce-cc175278467118585e86a8a425715a4e5ae62c95.tar.gz |
Merge branch '39878-commit-pipeline-reads-wrong-key' into 'master'
Fix commit pipeline showing wrong status
Closes #39878
See merge request gitlab-org/gitlab-ce!15238
Diffstat (limited to 'app')
-rw-r--r-- | app/views/projects/commit/_commit_box.html.haml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/projects/commit/_commit_box.html.haml b/app/views/projects/commit/_commit_box.html.haml index ff17372fdd9..3f4415f9e5e 100644 --- a/app/views/projects/commit/_commit_box.html.haml +++ b/app/views/projects/commit/_commit_box.html.haml @@ -67,7 +67,7 @@ - if @commit.last_pipeline - last_pipeline = @commit.last_pipeline .well-segment.pipeline-info - .status-icon-container{ class: "ci-status-icon-#{@commit.status}" } + .status-icon-container{ class: "ci-status-icon-#{last_pipeline.status}" } = link_to project_pipeline_path(@project, last_pipeline.id) do = ci_icon_for_status(last_pipeline.status) #{ _('Pipeline') } |