From 21521183e875118b793beccbcb964dc97f1ad982 Mon Sep 17 00:00:00 2001 From: Martina Bustacchini <41484878+deodorhunter@users.noreply.github.com> Date: Thu, 8 Feb 2024 09:26:40 +0100 Subject: [PATCH] fix: do not show empty headings if title in block is not configured (#517) Co-authored-by: Piero Nicolli --- RELEASE.md | 1 + src/components/ItaliaTheme/Blocks/CountDown/Body.jsx | 4 +++- src/components/ItaliaTheme/Blocks/SearchSections/Body.jsx | 4 +++- 3 files changed, 7 insertions(+), 2 deletions(-) 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}

+ )}