summaryrefslogtreecommitdiff
path: root/app/helpers/ci_status_helper.rb
diff options
context:
space:
mode:
authorAnnabel Dunstone Gray <annabel.dunstone@gmail.com>2016-11-22 11:38:53 -0700
committerAnnabel Dunstone Gray <annabel.dunstone@gmail.com>2016-11-22 11:38:53 -0700
commit6f11ffe8657dfbc0d48f936534436360d23cec9a (patch)
tree983c61ff6a75d61fdbd9d6a69b2c2390b2fc657f /app/helpers/ci_status_helper.rb
parentb8980e89aa87901ef17f4fed58802d07ddbb1b6a (diff)
downloadgitlab-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.rb2
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) + '&nbsp;'.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