Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: added title attribute to input for searchSection block #555

Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions RELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,16 @@
- ...
-->

## Versione X.X.X (dd/mm/yyyy)

### Migliorie

- Migliorata l'accessibilità del blocco Cerca nelle Sezioni

## Versione 7.25.0 (20/02/2024)

### Novità

- Sono state aggiunte delle nuove proprietà nel blocco elenco con variazione Bandi in Evidenza per mostrare le Note di aggiornamento anche per i bandi scaduti e la Data di ultima modifica per tutti i bandi.
- Nella ricerca per Bandi sono stati implementati dei pre-filtri non visibili dall'utente configurabili dalla sidebar laterale per rendere la ricerca più specifica all'utente.

Expand Down
1 change: 1 addition & 0 deletions src/components/ItaliaTheme/Blocks/SearchSections/Body.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@ const Body = ({ block, sections }) => {
e.key === 'Enter' ? navigate(inputText, searchFilters()) : null
}
aria-label={block.placeholder}
title={block.placeholder}
></input>
<button
className="rounded-right"
Expand Down
Loading