🐛 Gros bug de pourcentage sur le taux ATMP entreprises > 150 sal

pull/611/head
Mael 2019-07-19 20:07:38 +02:00
parent 7cb365db95
commit 2067689617
1 changed files with 1 additions and 1 deletions

View File

@ -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()
},