From 970c951da8fa4af6f75c31d17978a270c18f0c1f Mon Sep 17 00:00:00 2001 From: Johan Girod Date: Mon, 15 Oct 2018 11:42:12 +0200 Subject: [PATCH] =?UTF-8?q?:bug:=20r=C3=A9pare=20l'autocomplete=20de=20sel?= =?UTF-8?q?ection=20de=20commune?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Dorénavant, on affiche directement les résultats de l'api, sans filtre. Ca permet d'avoir une recherche moins restrictive, notamment au niveau des noms de communes avec tiret (e.g. saint-denis) --- source/components/conversation/select/SelectGéo.js | 4 ++++ 1 file changed, 4 insertions(+) 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}