remboursement nano credit OK
This commit is contained in:
parent
1adcfa786e
commit
b03dcbee76
|
@ -405,19 +405,19 @@ class CautionNanoCreditAgent extends Component {
|
|||
if (value === I18n.t('WITHDRAWAL_IN_CASH'))
|
||||
this.setState({
|
||||
withdrawalInCash: true,
|
||||
withdrawalInCashTypeName: I18n.t('WITHDRAWAL_IN_CASH')
|
||||
withdrawalInCashTypeName: 'WITHDRAWAL_IN_CASH'
|
||||
});
|
||||
else
|
||||
this.setState({
|
||||
withdrawalInCash: false,
|
||||
withdrawalInCashTypeName: I18n.t('TRANSFER_IN_ACCOUNT')
|
||||
withdrawalInCashTypeName: 'TRANSFER_IN_ACCOUNT'
|
||||
})
|
||||
}}
|
||||
valueExtractor={(value) => {
|
||||
return value.name
|
||||
return I18n.t(value.name)
|
||||
}}
|
||||
labelExtractor={(value) => {
|
||||
return value.name
|
||||
return I18n.t(value.name)
|
||||
}}
|
||||
/>
|
||||
</Animatable.View>
|
||||
|
|
Loading…
Reference in New Issue