From b0efae7001139510952c79e6c962edd781fa1c23 Mon Sep 17 00:00:00 2001 From: Kai Rollmann Date: Sun, 15 Aug 2021 06:21:50 +0200 Subject: [PATCH] Support full width text fields in forms --- frontend/src/js/external-forms/form/Field.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/frontend/src/js/external-forms/form/Field.tsx b/frontend/src/js/external-forms/form/Field.tsx index 686f90055c..e47aefedb6 100644 --- a/frontend/src/js/external-forms/form/Field.tsx +++ b/frontend/src/js/external-forms/form/Field.tsx @@ -74,6 +74,7 @@ const Field = ({ field, ...commonProps }: PropsT) => { inputType: "text", label: field.label[locale], placeholder: (field.placeholder && field.placeholder[locale]) || "", + fullWidth: field.style ? field.style.fullWidth : false, }} /> );