Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/app/views
diff options
context:
space:
mode:
authorMarc Schwede <git@schwedenmut.de>2019-07-10 17:41:47 +0300
committerAnnabel Dunstone Gray <annabel.m.gray@gmail.com>2019-07-10 17:41:47 +0300
commitab6ec362cae8809e2944abec5701a89057317c55 (patch)
treef3b3c9c272297c6f0daac052453f255c7878d5b6 /app/views
parent27bafccdab61f4883a542df74746eeb36dd1a82b (diff)
Added css class to fix line wrap for assignee label in issues
Fixes #64331
Diffstat (limited to 'app/views')
-rw-r--r--app/views/shared/issuable/form/_metadata_issuable_assignee.html.haml2
1 files changed, 1 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|