diff --git a/source/components/conversation/select/SelectGéo.js b/source/components/conversation/select/SelectGéo.js index 45fad5eb0..3b6089bdb 100644 --- a/source/components/conversation/select/SelectGéo.js +++ b/source/components/conversation/select/SelectGéo.js @@ -45,6 +45,10 @@ class Select extends Component { optionRenderer={({ nom, departement }) => nom + ` (${departement?.nom})` } + filterOptions={options => { + // Do no filtering, just return all options + return options + }} placeholder="Entrez le nom de commune" noResultsText="Nous n'avons trouvé aucune commune" searchPromptText={null}