From 1a5ecd19bee3715966ab24b82f6aa1da331ee402 Mon Sep 17 00:00:00 2001 From: Mael Date: Mon, 10 Sep 2018 17:13:39 +0200 Subject: [PATCH] =?UTF-8?q?R=C3=A9solution=20d'un=20bug=20lors=20de=20la?= =?UTF-8?q?=20saisie=20de=20"Saint"=20dans=20la=20localisation?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Avec un simple point d'interrogation ! --- source/components/conversation/select/SelectGéo.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/components/conversation/select/SelectGéo.js b/source/components/conversation/select/SelectGéo.js index ab8336113..3fc806799 100644 --- a/source/components/conversation/select/SelectGéo.js +++ b/source/components/conversation/select/SelectGéo.js @@ -44,7 +44,7 @@ export default class Select extends Component { onChange={submitOnChange} labelKey="nom" optionRenderer={({ nom, departement }) => - nom + ` (${departement.nom})` + nom + ` (${departement?.nom})` } placeholder="Entrez le nom de commune" noResultsText="Nous n'avons trouvé aucune commune"