summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRémy Coutable <remy@rymai.me>2016-10-10 12:54:25 +0000
committerRémy Coutable <remy@rymai.me>2016-10-10 12:54:25 +0000
commit6f18c0a0b07a91af31cea914a9f9f07529279d29 (patch)
treec2c9a214c67eb72d9d70f30bc15c34d7cfc4ad7a
parent680b675eaea1681524d6ae02fcb95d459f881661 (diff)
parented24cf05fa5a3f1d6e4a2aa2740c25ee029e50a8 (diff)
downloadgitlab-ce-6f18c0a0b07a91af31cea914a9f9f07529279d29.tar.gz
Merge branch '23123-build-sidebar-selected-build' into 'master'
Fix wrong icon in CI build detail sidebar: right-arrow => arrow-right ## What does this MR do? It fixes a wrong icon name in the build detail page's sidebar: `right-arrow` should be `arrow-right`! ## Are there points in the code the reviewer needs to double check? No. Closes #23123 See merge request !6768
-rw-r--r--app/views/projects/builds/_sidebar.html.haml2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/projects/builds/_sidebar.html.haml b/app/views/projects/builds/_sidebar.html.haml
index f5344091cae..966633f1f89 100644
--- a/app/views/projects/builds/_sidebar.html.haml
+++ b/app/views/projects/builds/_sidebar.html.haml
@@ -128,7 +128,7 @@
- builds.select{|build| build.status == build_status}.each do |build|
.build-job{class: ('active' if build == @build), data: {stage: build.stage}}
= link_to namespace_project_build_path(@project.namespace, @project, build) do
- = icon('right-arrow')
+ = icon('arrow-right')
= ci_icon_for_status(build.status)
%span
- if build.name