From 2d2c788f78a98109b7772516b16d550dc935e3d0 Mon Sep 17 00:00:00 2001 From: Martina Bustacchini Date: Tue, 6 Feb 2024 10:15:15 +0100 Subject: [PATCH] fix: do not show empty headings if title in block is not configured --- RELEASE.md | 6 ++++++ src/components/ItaliaTheme/Blocks/CountDown/Body.jsx | 4 +++- src/components/ItaliaTheme/Blocks/SearchSections/Body.jsx | 4 +++- 3 files changed, 12 insertions(+), 2 deletions(-) diff --git a/RELEASE.md b/RELEASE.md index c9893dd99..2aadc9d14 100644 --- a/RELEASE.md +++ b/RELEASE.md @@ -30,6 +30,12 @@ - ... --> +## Versione x.x.x (xx/xx/xxxx) + +### 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 7.24.2 (11/01/2024) ### Migliorie diff --git a/src/components/ItaliaTheme/Blocks/CountDown/Body.jsx b/src/components/ItaliaTheme/Blocks/CountDown/Body.jsx index 5a75b273b..0d2f92117 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 }) => {
-

{block.title}

+ {block.title && ( +

{block.title}

+ )}
{ )}
-

{block.title}

+ {block.title && ( +

{block.title}

+ )}