diff options
author | Clement Ho <clemmakesapps@gmail.com> | 2019-03-04 01:19:46 +0000 |
---|---|---|
committer | Clement Ho <clemmakesapps@gmail.com> | 2019-03-04 01:19:46 +0000 |
commit | 56d4ef8d221825e0d39b53bd4e427580f8782f84 (patch) | |
tree | fe29ddcc37f24cd14423084164e468f05bd95feb /app | |
parent | 46dd9abe7cd49cc6a1b63e86a9951c5065d20021 (diff) | |
parent | 0ddba2d773cbbaaa6f0ed8d957f52d1ea792e611 (diff) | |
download | gitlab-ce-56d4ef8d221825e0d39b53bd4e427580f8782f84.tar.gz |
Merge branch '57829-issuable-meta-line-ui-broken-on-mobile' into 'master'
Fix UI for issuable meta info
Closes #57829
See merge request gitlab-org/gitlab-ce!25332
Diffstat (limited to 'app')
-rw-r--r-- | app/helpers/issuables_helper.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/helpers/issuables_helper.rb b/app/helpers/issuables_helper.rb index af28e6fcb93..0622cdfc196 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 |