summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Greiling <mike@pixelcog.com>2019-03-28 21:28:06 +0000
committerMike Greiling <mike@pixelcog.com>2019-03-28 21:28:06 +0000
commitee8f3d5cd806c5558a2153b1a545b371c47c600f (patch)
tree5fe9e037a1b2294866c03d09940a49877a0b92be
parent95cda2cfb367cc0cdd770e74a8f8ddde51d344dd (diff)
parentab784ffa60be13f0ca4ff3f5136fdf57450bdef8 (diff)
downloadgitlab-ce-ee8f3d5cd806c5558a2153b1a545b371c47c600f.tar.gz
Merge branch '9420-truncate-long-tags' into 'master'
Truncate long tags in runners table See merge request gitlab-org/gitlab-ce!26666
-rw-r--r--app/views/admin/runners/_runner.html.haml2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/admin/runners/_runner.html.haml b/app/views/admin/runners/_runner.html.haml
index ecf2b1d60ba..423472324fe 100644
--- a/app/views/admin/runners/_runner.html.haml
+++ b/app/views/admin/runners/_runner.html.haml
@@ -50,7 +50,7 @@
.table-mobile-header{ role: 'rowheader' }= _('Tags')
.table-mobile-content
- runner.tags.map(&:name).sort.each do |tag|
- %span.badge.badge-primary
+ %span.badge.badge-primary.str-truncated.has-tooltip{ title: tag }
= tag
.table-section.section-10