Fix author layouts in issuable meta line UIs on mobile

Signed-off-by: Takuya Noguchi <takninnovationresearch@gmail.com>
This commit is contained in:
Takuya Noguchi 2019-02-18 10:23:12 +09:00
parent 28aa4d331c
commit 0ddba2d773
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