summaryrefslogtreecommitdiff
path: root/app/helpers
diff options
context:
space:
mode:
authorMike Greiling <mike@pixelcog.com>2018-09-06 22:50:24 +0000
committerMike Greiling <mike@pixelcog.com>2018-09-06 22:50:24 +0000
commit13202722c8f20e0c7ef1d51e374c79776e43c466 (patch)
treee639d19bbce1488c1b03c87cd7f8a5342c5fe24c /app/helpers
parent07c031338a5e9cdeb69bb562179ac675cfe9c960 (diff)
parent290512db5b09d67447b7c984fc47f1c896400885 (diff)
downloadgitlab-ce-13202722c8f20e0c7ef1d51e374c79776e43c466.tar.gz
Merge branch '49644-make-margin-of-user-status-emoji-consistent' into 'master'
Resolve "Make margin of user status emoji consistent" Closes #49644 See merge request gitlab-org/gitlab-ce!21268
Diffstat (limited to 'app/helpers')
-rw-r--r--app/helpers/issuables_helper.rb3
1 files changed, 1 insertions, 2 deletions
diff --git a/app/helpers/issuables_helper.rb b/app/helpers/issuables_helper.rb
index c84ed8091c3..79449a30305 100644
--- a/app/helpers/issuables_helper.rb
+++ b/app/helpers/issuables_helper.rb
@@ -174,13 +174,12 @@ module IssuablesHelper
author_output << link_to_member(project, issuable.author, size: 24, by_username: true, avatar: false, mobile_classes: "d-block d-sm-none")
if status = user_status(issuable.author)
- author_output << "&ensp; #{status}".html_safe
+ author_output << "#{status}".html_safe
end
author_output
end
- output << "&ensp;".html_safe
output << content_tag(:span, (issuable_first_contribution_icon if issuable.first_contribution?), class: 'has-tooltip', title: _('1st contribution!'))
output << content_tag(:span, (issuable.task_status if issuable.tasks?), id: "task_status", class: "d-none d-sm-none d-md-inline-block")