diff options
author | Annabel Dunstone Gray <annabel.dunstone@gmail.com> | 2016-11-22 11:38:53 -0700 |
---|---|---|
committer | Annabel Dunstone Gray <annabel.dunstone@gmail.com> | 2016-11-22 11:38:53 -0700 |
commit | 6f11ffe8657dfbc0d48f936534436360d23cec9a (patch) | |
tree | 983c61ff6a75d61fdbd9d6a69b2c2390b2fc657f /app/helpers/ci_status_helper.rb | |
parent | b8980e89aa87901ef17f4fed58802d07ddbb1b6a (diff) | |
download | gitlab-ce-6f11ffe8657dfbc0d48f936534436360d23cec9a.tar.gz |
Fix spacing between icon and word in status badgestatus-badge-spacing
Diffstat (limited to 'app/helpers/ci_status_helper.rb')
-rw-r--r-- | app/helpers/ci_status_helper.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/helpers/ci_status_helper.rb b/app/helpers/ci_status_helper.rb index 895c3d728ad..abcf84b4d15 100644 --- a/app/helpers/ci_status_helper.rb +++ b/app/helpers/ci_status_helper.rb @@ -5,7 +5,7 @@ module CiStatusHelper end def ci_status_with_icon(status, target = nil) - content = ci_icon_for_status(status) + ' '.html_safe + ci_label_for_status(status) + content = ci_icon_for_status(status) + ci_label_for_status(status) klass = "ci-status ci-#{status}" if target link_to content, target, class: klass |