diff --git a/RELEASE.md b/RELEASE.md index 0beedbfae..eadbbdd0f 100644 --- a/RELEASE.md +++ b/RELEASE.md @@ -41,6 +41,20 @@ - ... --> +## Versione X.X.X (dd/mm/yyyy) + +### Migliorie + +- ... + +### Novità + +- ... + +### Fix + +- Risolto un problema con il blocco Form che in alcuni casi poteva dare problemi di validazione dei campi obbligatori. + ## Versione 11.23.2 (24/09/2024) ### Migliorie diff --git a/src/customizations/volto-form-block/components/Sidebar.jsx b/src/customizations/volto-form-block/components/Sidebar.jsx index bd8515e9d..21b143159 100644 --- a/src/customizations/volto-form-block/components/Sidebar.jsx +++ b/src/customizations/volto-form-block/components/Sidebar.jsx @@ -294,7 +294,10 @@ const Sidebar = ({ { - var update_values = {}; + const update_values = {}; + if (subblock.field_type === 'static_text') { + update_values.required = false; + } onChangeSubBlock(index, { ...subblock,