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
This commit is contained in:
commit
6f18c0a0b0
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue