Added css class to fix line wrap for assignee label in issues

Fixes #64331
This commit is contained in:
Marc Schwede 2019-07-10 14:41:47 +00:00 committed by Annabel Dunstone Gray
parent 27bafccdab
commit ab6ec362ca
2 changed files with 6 additions and 1 deletions

View File

@ -1,4 +1,4 @@
= form.label :assignee_id, "Assignee", class: "col-form-label #{has_due_date ? "col-lg-4" : "col-sm-2"}"
= form.label :assignee_id, "Assignee", class: "col-form-label #{has_due_date ? "col-md-2 col-lg-4" : "col-sm-2"}"
.col-sm-10{ class: ("col-md-8" if has_due_date) }
.issuable-form-select-holder.selectbox
- issuable.assignees.each do |assignee|

View File

@ -0,0 +1,5 @@
---
title: Fixed incorrect line wrap for assignee label in issues
merge_request: 30523
author: Marc Schwede
type: fixed