diff options
author | Annabel Dunstone Gray <annabel.m.gray@gmail.com> | 2019-07-10 14:41:48 +0000 |
---|---|---|
committer | Annabel Dunstone Gray <annabel.m.gray@gmail.com> | 2019-07-10 14:41:48 +0000 |
commit | d5d485c0aa42ca3889f0b0a3a4df9201886ddb75 (patch) | |
tree | f3b3c9c272297c6f0daac052453f255c7878d5b6 | |
parent | 27bafccdab61f4883a542df74746eeb36dd1a82b (diff) | |
parent | ab6ec362cae8809e2944abec5701a89057317c55 (diff) | |
download | gitlab-ce-d5d485c0aa42ca3889f0b0a3a4df9201886ddb75.tar.gz |
Merge branch '64331-Assignee-field-in-a-new-issue-has-an-incorrect-line-wrap' into 'master'
Added css class to fix incorrect line wrap
Closes #64331
See merge request gitlab-org/gitlab-ce!30523
-rw-r--r-- | app/views/shared/issuable/form/_metadata_issuable_assignee.html.haml | 2 | ||||
-rw-r--r-- | changelogs/unreleased/64331-Assignee-field-in-a-new-issue-has-an-incorrect-line-wrap.yml | 5 |
2 files changed, 6 insertions, 1 deletions
diff --git a/app/views/shared/issuable/form/_metadata_issuable_assignee.html.haml b/app/views/shared/issuable/form/_metadata_issuable_assignee.html.haml index 5336159e762..60dc893d9f9 100644 --- a/app/views/shared/issuable/form/_metadata_issuable_assignee.html.haml +++ b/app/views/shared/issuable/form/_metadata_issuable_assignee.html.haml @@ -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| diff --git a/changelogs/unreleased/64331-Assignee-field-in-a-new-issue-has-an-incorrect-line-wrap.yml b/changelogs/unreleased/64331-Assignee-field-in-a-new-issue-has-an-incorrect-line-wrap.yml new file mode 100644 index 00000000000..7d67b94869d --- /dev/null +++ b/changelogs/unreleased/64331-Assignee-field-in-a-new-issue-has-an-incorrect-line-wrap.yml @@ -0,0 +1,5 @@ +--- +title: Fixed incorrect line wrap for assignee label in issues +merge_request: 30523 +author: Marc Schwede +type: fixed |