summaryrefslogtreecommitdiff
path: root/app/helpers
diff options
context:
space:
mode:
authorTakuya Noguchi <takninnovationresearch@gmail.com>2019-02-18 10:23:12 +0900
committerTakuya Noguchi <takninnovationresearch@gmail.com>2019-02-18 11:38:00 +0900
commit0ddba2d773cbbaaa6f0ed8d957f52d1ea792e611 (patch)
treee2a740d8405e2123ec5066f299fa3dc3875529f2 /app/helpers
parent28aa4d331c67fd3206858f57a30a3c14449216f3 (diff)
downloadgitlab-ce-0ddba2d773cbbaaa6f0ed8d957f52d1ea792e611.tar.gz
Fix author layouts in issuable meta line UIs on mobile
Signed-off-by: Takuya Noguchi <takninnovationresearch@gmail.com>
Diffstat (limited to 'app/helpers')
-rw-r--r--app/helpers/issuables_helper.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/helpers/issuables_helper.rb b/app/helpers/issuables_helper.rb
index 1a471034972..7865d3b28a3 100644
--- a/app/helpers/issuables_helper.rb
+++ b/app/helpers/issuables_helper.rb
@@ -191,7 +191,7 @@ module IssuablesHelper
output << content_tag(:strong) do
author_output = link_to_member(project, issuable.author, size: 24, mobile_classes: "d-none d-sm-inline")
- author_output << link_to_member(project, issuable.author, size: 24, by_username: true, avatar: false, mobile_classes: "d-block d-sm-none")
+ author_output << link_to_member(project, issuable.author, size: 24, by_username: true, avatar: false, mobile_classes: "d-inline d-sm-none")
if status = user_status(issuable.author)
author_output << "#{status}".html_safe