diff --git a/source/components/conversation/select/SelectTauxRisque.js b/source/components/conversation/select/SelectTauxRisque.js index 664f5ec21..b4c8a21bf 100644 --- a/source/components/conversation/select/SelectTauxRisque.js +++ b/source/components/conversation/select/SelectTauxRisque.js @@ -14,7 +14,7 @@ class ReactSelectWrapper extends Component { submit, options, submitOnChange = option => { - option.text = option['Taux net'].replace(',', '.') + option.text = +option['Taux net'].replace(',', '.') / 100 onChange(option.text) submit() },