diff options
author | Annabel Dunstone <annabel.dunstone@gmail.com> | 2016-07-13 13:38:17 -0500 |
---|---|---|
committer | Annabel Dunstone <annabel.dunstone@gmail.com> | 2016-07-13 15:25:24 -0500 |
commit | 9bfc67cba4d2a5d920a82a4442502f82b13b3b05 (patch) | |
tree | ff03a0f4e8b704c150538d5c13d88e914a724615 /app/views/projects | |
parent | dbd581112dacade61c5863d33533f93ac06de206 (diff) | |
download | gitlab-ce-9bfc67cba4d2a5d920a82a4442502f82b13b3b05.tar.gz |
Remove pipeline styled tag
Diffstat (limited to 'app/views/projects')
-rw-r--r-- | app/views/projects/ci/pipelines/_pipeline.html.haml | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/app/views/projects/ci/pipelines/_pipeline.html.haml b/app/views/projects/ci/pipelines/_pipeline.html.haml index 70d72f72bca..aea51dcd986 100644 --- a/app/views/projects/ci/pipelines/_pipeline.html.haml +++ b/app/views/projects/ci/pipelines/_pipeline.html.haml @@ -16,9 +16,7 @@ .icon-container = custom_icon("icon_commit") = link_to pipeline.short_sha, namespace_project_commit_path(@project.namespace, @project, pipeline.sha), class: "commit-id monospace" - - if pipeline.tag? - %span.label.label-primary tag - - elsif pipeline.latest? + - if pipeline.latest? %span.label.label-success.has-tooltip{ title: 'Latest build for this branch' } latest - if pipeline.triggered? %span.label.label-primary triggered |