diff options
author | Grzegorz Bizon <grzegorz.bizon@ntsn.pl> | 2015-12-14 11:03:33 +0100 |
---|---|---|
committer | Grzegorz Bizon <grzegorz.bizon@ntsn.pl> | 2015-12-14 11:03:33 +0100 |
commit | 2dafec91dd542ac641fea4750bf8fd68211a58af (patch) | |
tree | 342789379a9d0033d7efc7301f2811f4c3aa1c28 /app/helpers | |
parent | 65fe4bb1ceed6bae05724f3494fb57e8b09fa616 (diff) | |
download | gitlab-ce-2dafec91dd542ac641fea4750bf8fd68211a58af.tar.gz |
Add matcher class to ci status link
Diffstat (limited to 'app/helpers')
-rw-r--r-- | app/helpers/ci_status_helper.rb | 2 |
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) |