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
This commit is contained in:
Clement Ho 2019-03-04 01:19:46 +00:00
commit 56d4ef8d22
2 changed files with 6 additions and 1 deletions

View File

@ -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

View File

@ -0,0 +1,5 @@
---
title: Fix author layouts in issuable meta line UIs on mobile
merge_request: 25332
author: Takuya Noguchi
type: fixed