diff --git a/CHANGELOG.md b/CHANGELOG.md index d37556dbdb..54b568d5a8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,13 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [3.0.4] 2023-05-05 + +### Fixed + +- Expanding question inputs in form builder +- Language toggle not appearing on first page visit + ## [3.0.3] 2023-05-03 ### Fixed diff --git a/VERSION b/VERSION index 75a22a26ac..b0f2dcb32f 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -3.0.3 +3.0.4 diff --git a/components/form-builder/app/SetResponseDelivery.tsx b/components/form-builder/app/SetResponseDelivery.tsx index bcea19d8bc..fda7f88592 100644 --- a/components/form-builder/app/SetResponseDelivery.tsx +++ b/components/form-builder/app/SetResponseDelivery.tsx @@ -229,7 +229,7 @@ export const SetResponseDelivery = () => { {t("settingsResponseDelivery.selectClassification")}

- {t("beforePublishMessage")} + {t("settingsResponseDelivery.beforePublishMessage")}

) => updateValue(index, e.target.value)} - theme="title" + onChange={(e: React.ChangeEvent) => updateValue(index, e.target.value)} {...getLocalizationAttribute()} /> ); diff --git a/components/form-builder/app/shared/ExpandingInput.tsx b/components/form-builder/app/shared/ExpandingInput.tsx index 7fec14bc6a..92a2918f3b 100644 --- a/components/form-builder/app/shared/ExpandingInput.tsx +++ b/components/form-builder/app/shared/ExpandingInput.tsx @@ -4,6 +4,8 @@ interface Props { id: string; name?: string; type?: string; + wrapperClassName?: string; + className?: string; placeholder?: string; describedBy?: string; value: string | number; @@ -29,18 +31,20 @@ const ExpandingInput = React.forwardRef((props, ref) => { isInvalid = false, lang, onBlur, + wrapperClassName, + className, } = props; return (