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 <grzegorz.bizon@ntsn.pl>2015-12-14 13:03:33 +0300
committerGrzegorz Bizon <grzegorz.bizon@ntsn.pl>2015-12-14 13:03:33 +0300
commit2dafec91dd542ac641fea4750bf8fd68211a58af (patch)
tree342789379a9d0033d7efc7301f2811f4c3aa1c28 /app/helpers/ci_status_helper.rb
parent65fe4bb1ceed6bae05724f3494fb57e8b09fa616 (diff)
Add matcher class to ci status link
Diffstat (limited to 'app/helpers/ci_status_helper.rb')
-rw-r--r--app/helpers/ci_status_helper.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/helpers/ci_status_helper.rb b/app/helpers/ci_status_helper.rb
index f8f2cbf1319..c202c592067 100644
--- a/app/helpers/ci_status_helper.rb
+++ b/app/helpers/ci_status_helper.rb
@@ -57,7 +57,7 @@ module CiStatusHelper
def render_ci_status(ci_commit)
link_to ci_status_path(ci_commit),
- class: "c#{ci_status_color(ci_commit)}",
+ class: "ci-status-link c#{ci_status_color(ci_commit)}",
title: "Build #{ci_status_label(ci_commit)}",
data: { toggle: 'tooltip', placement: 'left' } do
ci_status_icon(ci_commit)