Skip to content

Commit

Permalink
fix: changed aria-hidden to false for slider arrows
Browse files Browse the repository at this point in the history
  • Loading branch information
sabrina-bongiovanni committed Apr 12, 2024
1 parent a054a7f commit 1920eef
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions RELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@
- Sistemato il flag Mostra tipologia bandi nel blocco elenco con variazione Bandi in Evidenza
- Tradotto il messaggio per Screen Reader del bottone per aprire e chiudere il menu in mobile.
- Menu dropdown si chiude correttamente quando il percorso è un sottosito con un menu diverso rispetto al sito principale
- Migliorata l'accessibilità del blocco Elenco nella variazione Slider.

## Versione 7.25.3 (07/03/2024)

Expand Down
4 changes: 2 additions & 2 deletions src/components/ItaliaTheme/Blocks/Listing/SliderTemplate.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ function NextArrow(props) {
onClick={handleClick}
title={intl.formatMessage(messages.successivo)}
aria-label={intl.formatMessage(messages.successivo)}
aria-hidden={true}
aria-hidden={false}
onKeyDown={handleKeyboardUsers}
id="sliderNextArrow"
>
Expand Down Expand Up @@ -117,7 +117,7 @@ function PrevArrow(props) {
onClick={handleClick}
title={intl.formatMessage(messages.precedente)}
aria-label={intl.formatMessage(messages.precedente)}
aria-hidden={true}
aria-hidden={false}
id="sliderPrevArrow"
onKeyDown={handleKeyboardUsers}
>
Expand Down

0 comments on commit 1920eef

Please sign in to comment.