From 2295a2d545961e19f0cfd802ea3d0ac4e836f92a Mon Sep 17 00:00:00 2001 From: Martina Bustacchini Date: Fri, 2 Feb 2024 12:30:52 +0100 Subject: [PATCH] fix: do not show empty headings if title in block is not configured --- RELEASE.md | 5 +++++ src/components/ItaliaTheme/Blocks/CountDown/Body.jsx | 4 +++- src/components/ItaliaTheme/Blocks/SearchSections/Body.jsx | 4 +++- 3 files changed, 11 insertions(+), 2 deletions(-) diff --git a/RELEASE.md b/RELEASE.md index 0e1d6ee21..b8cf05672 100644 --- a/RELEASE.md +++ b/RELEASE.md @@ -40,18 +40,23 @@ - ... --> + ## Versione x.x.x (xx/xx/xxxx) ### Novità - Aggiunta l'icona per il formato di file CSV +### Fix + +- [ Accessibilità ] Rimossi gli heading per alcuni blocchi nel caso il titolo non sia presente al fine di migliorare l'esperienza con l'uso di screen reader ## Versione 11.3.3 (30/01/2024) ### Migliorie - Migliorato il focus sulle immagini in edit del blocco Immagine quando queste sono allineate a sinistra o a destra. + ### Fix - Sistemato il layout del blocco elenco per i Bandi diff --git a/src/components/ItaliaTheme/Blocks/CountDown/Body.jsx b/src/components/ItaliaTheme/Blocks/CountDown/Body.jsx index 8eb74e2d3..6919fc5a5 100644 --- a/src/components/ItaliaTheme/Blocks/CountDown/Body.jsx +++ b/src/components/ItaliaTheme/Blocks/CountDown/Body.jsx @@ -50,7 +50,9 @@ const Body = ({ block, sections, data }) => {
-

{block.title}

+ {block.title && ( +

{block.title}

+ )}
{ )}
-

{block.title}

+ {block.title && ( +

{block.title}

+ )}