From 9eb087e6b2a45401e2cacd289c2329136146056d Mon Sep 17 00:00:00 2001 From: Piero Nicolli Date: Wed, 2 Oct 2024 09:38:13 +0200 Subject: [PATCH] fix: always set form block static_text fields as not required (#782) * fix: always set form block static_text fields as not required * Update RELEASE.md Co-authored-by: Giulia Ghisini <51911425+giuliaghisini@users.noreply.github.com> --------- Co-authored-by: Giulia Ghisini <51911425+giuliaghisini@users.noreply.github.com> --- RELEASE.md | 14 ++++++++++++++ .../volto-form-block/components/Sidebar.jsx | 5 ++++- 2 files changed, 18 insertions(+), 1 deletion(-) diff --git a/RELEASE.md b/RELEASE.md index 835a2b24c..1c179dab9 100644 --- a/RELEASE.md +++ b/RELEASE.md @@ -45,6 +45,20 @@ ### Migliorie +- ... + +### Novità + +- ... + +### Fix + +- Risolto un problema con il blocco Form che in alcuni casi poteva dare problemi di validazione dei campi di tipo 'testo statico'. + +## Versione 11.23.2 (24/09/2024) + +### Migliorie + - Gli utenti SPID vengono ora direttamente rediretti al link finale quando viene utilizzato un CT di tipo Collegamento ### Novità 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,