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'))
|
if (value === I18n.t('WITHDRAWAL_IN_CASH'))
|
||||||
this.setState({
|
this.setState({
|
||||||
withdrawalInCash: true,
|
withdrawalInCash: true,
|
||||||
withdrawalInCashTypeName: I18n.t('WITHDRAWAL_IN_CASH')
|
withdrawalInCashTypeName: 'WITHDRAWAL_IN_CASH'
|
||||||
});
|
});
|
||||||
else
|
else
|
||||||
this.setState({
|
this.setState({
|
||||||
withdrawalInCash: false,
|
withdrawalInCash: false,
|
||||||
withdrawalInCashTypeName: I18n.t('TRANSFER_IN_ACCOUNT')
|
withdrawalInCashTypeName: 'TRANSFER_IN_ACCOUNT'
|
||||||
})
|
})
|
||||||
}}
|
}}
|
||||||
valueExtractor={(value) => {
|
valueExtractor={(value) => {
|
||||||
return value.name
|
return I18n.t(value.name)
|
||||||
}}
|
}}
|
||||||
labelExtractor={(value) => {
|
labelExtractor={(value) => {
|
||||||
return value.name
|
return I18n.t(value.name)
|
||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</Animatable.View>
|
</Animatable.View>
|
||||||
|
|
Loading…
Reference in New Issue