From 63a7adc42720771b3d44bac5102d25abd97b94fb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Benjamin=20B=C3=A4dorf?= Date: Thu, 7 Jan 2021 16:49:26 +0100 Subject: [PATCH] Fixed broken overflow for wysiwyg popups on project create page This adds -overflow-visible as a modifier to the form field. It's relatively ad-hoc, but is in line with existing forms. --- app/views/projects/form/_project_attributes.html.erb | 2 +- app/views/projects/form/attributes/_status.html.erb | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/app/views/projects/form/_project_attributes.html.erb b/app/views/projects/form/_project_attributes.html.erb index e506d6fbd0..6c2bae4fd1 100644 --- a/app/views/projects/form/_project_attributes.html.erb +++ b/app/views/projects/form/_project_attributes.html.erb @@ -54,7 +54,7 @@ See docs/COPYRIGHT.rdoc for more details. locals: { form: form } %> <%= render partial: "projects/form/attributes/public", locals: { form: form } %> -<%= render partial: "projects/form/attributes/status", + <%= render partial: "projects/form/attributes/status", locals: { form: form } %> <% unless all_fields %> <%= render partial: "customizable/form", diff --git a/app/views/projects/form/attributes/_status.html.erb b/app/views/projects/form/attributes/_status.html.erb index 6a69ae09eb..9c7f973e3f 100644 --- a/app/views/projects/form/attributes/_status.html.erb +++ b/app/views/projects/form/attributes/_status.html.erb @@ -40,7 +40,7 @@ See docs/COPYRIGHT.rdoc for more details. include_blank: true, container_class: '-wide' %> -
+
<%= status_form.text_area :explanation, with_text_formatting: true, macros: false,