Commit d258a522 authored by Fatih Acet's avatar Fatih Acet Committed by Rémy Coutable

Merge branch '20139-branch-icon' into 'master'

Add branch or tag icon to ref in builds page

## What does this MR do?
Add branch or tag icon to ref in builds page

## Why was this MR needed?
It's currently missing but should be there

## What are the relevant issue numbers?
Closes #20139

## Screenshots (if relevant)
<img src="/uploads/fb5c9a285a1ce95c0aa8dfa5e32c5d7d/Screen_Shot_2016-07-22_at_9.14.39_AM.png" width="400px">

See merge request !5434
Signed-off-by: default avatarRémy Coutable <remy@rymai.me>
parent 9c5d8585
......@@ -2,6 +2,7 @@ Please view this file on the master branch, on stable branches it's out of date.
v 8.10.2 (unreleased)
- User can now search branches by name. !5144
- Add branch or tag icon to ref in builds page. !5434
- Don't show comment button in gutter of diffs on MR discussion tab
v 8.10.1
......
......@@ -22,6 +22,8 @@
- if defined?(ref) && ref
- if build.ref
.icon-container
= build.tag? ? icon('tag') : icon('code-fork')
= link_to build.ref, namespace_project_commits_path(build.project.namespace, build.project, build.ref), class: "monospace branch-name"
- else
.light none
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment