Reset la selection lorsque la recherche change dans le composant de recherche APE

pull/2782/head
Johan Girod 2023-06-13 15:04:47 +02:00
parent f597483e62
commit 3219e869eb
1 changed files with 4 additions and 1 deletions

View File

@ -220,7 +220,10 @@ export default function SearchCodeAPE({
<>
<SearchField
value={searchQuery}
onChange={setSearchQuery}
onChange={(v) => {
setSearchQuery(v)
setSelected('')
}}
label={t("Mots-clés définissants l'activité")}
placeholder={t('Par exemple : coiffure, boulangerie ou restauration')}
/>