summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRémy Coutable <remy@rymai.me>2016-10-03 07:27:35 +0000
committerRémy Coutable <remy@rymai.me>2016-10-03 07:27:35 +0000
commitbcb2699f04646e4738bb87410aab49b2c3a686fb (patch)
tree1e8c3ab1531432e1e05490a04327a146fe4835f2
parent2f76f755a96876edc6307508a0b984e44f694c8c (diff)
parent7cc831eeeb7de4b91a344c1304a177171c412237 (diff)
downloadgitlab-ce-bcb2699f04646e4738bb87410aab49b2c3a686fb.tar.gz
Merge branch 'patch-5' into 'master'
Use `fa-right-arrow` instead of `fa-check` as the current build indicator in the build sidebar for better UX. Closes #22499 See merge request !6501
-rw-r--r--CHANGELOG1
-rw-r--r--app/views/projects/builds/_sidebar.html.haml2
2 files changed, 2 insertions, 1 deletions
diff --git a/CHANGELOG b/CHANGELOG
index 44d9d99a427..c0c4b980038 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -5,6 +5,7 @@ v 8.13.0 (unreleased)
- Use gitlab-shell v3.6.2 (GIT TRACE logging)
- Fix centering of custom header logos (Ashley Dumaine)
- AbstractReferenceFilter caches project_refs on RequestStore when active
+ - Replaced the check sign to arrow in the show build view. !6501
- Speed-up group milestones show page
- Log LDAP lookup errors and don't swallow unrelated exceptions. !6103 (Markus Koller)
- Add more tests for calendar contribution (ClemMakesApps)
diff --git a/app/views/projects/builds/_sidebar.html.haml b/app/views/projects/builds/_sidebar.html.haml
index 8846cf8577c..f5344091cae 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('check')
+ = icon('right-arrow')
= ci_icon_for_status(build.status)
%span
- if build.name