Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGrzegorz Bizon <grzesiek.bizon@gmail.com>2016-12-06 14:28:07 +0300
committerGrzegorz Bizon <grzesiek.bizon@gmail.com>2016-12-06 14:28:07 +0300
commit157f4fe17fdd0044229c6830bb85fd26759a69cc (patch)
tree8cc276ef94c9196de70a4ea828c6077d1a458cd6
parent67cd3b36382ed2fafc29a620112a9de96f3899f6 (diff)
Use detailed status as CSS class in pipelines list
-rw-r--r--app/views/projects/ci/pipelines/_pipeline.html.haml2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/projects/ci/pipelines/_pipeline.html.haml b/app/views/projects/ci/pipelines/_pipeline.html.haml
index a037c7ab37c..0f08f4e8592 100644
--- a/app/views/projects/ci/pipelines/_pipeline.html.haml
+++ b/app/views/projects/ci/pipelines/_pipeline.html.haml
@@ -5,7 +5,7 @@
%tr.commit
%td.commit-link
- = link_to namespace_project_pipeline_path(pipeline.project.namespace, pipeline.project, pipeline.id), class: "ci-status ci-#{status}" do
+ = link_to namespace_project_pipeline_path(pipeline.project.namespace, pipeline.project, pipeline.id), class: "ci-status ci-#{detailed_status}" do
= ci_icon_for_status(detailed_status)
= ci_text_for_status(detailed_status)