Skip to content

Commit

Permalink
fix: added id to SearchInput template label to match aria-describedby…
Browse files Browse the repository at this point in the history
… attr (#566)
  • Loading branch information
sabrina-bongiovanni authored Mar 4, 2024
1 parent 6b25ba2 commit 49940f7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions RELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@
- La tendina delle select nel blocco Form non si sovrappone più ai campi sottostanti.
- Sistemato alert di errore nel blocco Form che nascondeva il form quando un campo non era valido, ora continua a visualizzarsi anche la form.
- Migliorato il testo alternativo per il logo NextGenerationEU nel footer.
- Migliorata l'accessibilità del blocco Cerca.
- Sistemato il contrasto delle icone nei pulsanti "primary" quando si attiva il focus col tab da tastiera

## Versione 11.5.1 (19/02/2024)
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
/* CUSTOMIZATIONS:
- Agid styling
- added id to searchInput label to match aria-describedby tag
*/
import React, { useState } from 'react';
import { Button, Icon, Input, Label } from 'design-react-kit';
Expand Down Expand Up @@ -29,6 +30,7 @@ const SearchInput = (props) => {
<Label
htmlFor={`${props.id}-searchtext`}
className={focused ? 'active' : 'inactive'}
id={`${props.id}-searchtextDescription`}
>
{intl.formatMessage(commonSearchBlockMessages.search)}
</Label>
Expand Down

0 comments on commit 49940f7

Please sign in to comment.