diff --git a/RELEASE.md b/RELEASE.md index 61a240a7d..c55085517 100644 --- a/RELEASE.md +++ b/RELEASE.md @@ -56,6 +56,7 @@ ### 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 - Sistemata la gerarchia per i titoli dentro al blocco semplice ## Versione 11.3.4 (31/01/2024) 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}

+ )}