package.lock added
This commit is contained in:
parent
011436fde4
commit
99b99a902f
|
@ -1,6 +1,5 @@
|
|||
#Wed Oct 14 15:00:41 WAT 2020
|
||||
distributionBase=GRADLE_USER_HOME
|
||||
distributionPath=wrapper/dists
|
||||
zipStoreBase=GRADLE_USER_HOME
|
||||
zipStorePath=wrapper/dists
|
||||
distributionUrl=https\://services.gradle.org/distributions/gradle-6.1.1-all.zip
|
||||
distributionUrl=https\://services.gradle.org/distributions/gradle-6.7.1-all.zip
|
||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -44,12 +44,14 @@ import {connect} from 'react-redux';
|
|||
import {bindActionCreators} from 'redux';
|
||||
import {
|
||||
cutString,
|
||||
cutStringWithoutDot, displayToast,
|
||||
cutStringWithoutDot,
|
||||
displayToast,
|
||||
isEmptyObject,
|
||||
optionDepotUserScreen,
|
||||
optionIdentificationUserScreen,
|
||||
optionLinkAccountUserScreen, optionNanoCreditAgentScreen,
|
||||
optionNanoCreditScreen, optionNanoSanteUserScreen,
|
||||
optionLinkAccountUserScreen,
|
||||
optionNanoCreditScreen,
|
||||
optionNanoSanteUserScreen,
|
||||
optionPaiementFacture,
|
||||
optionRetraitUserScreen,
|
||||
transactionHistoryIlinkLabel
|
||||
|
@ -861,10 +863,10 @@ class WalletDetailUser extends Component {
|
|||
isEqual(element, 'montant') ?
|
||||
` ${item[element].length > 8 ? cutString(thousands(item[element], ' '), 6) : thousands(item[element], ' ')}`
|
||||
: isEqual(element, 'destinataire') ?
|
||||
item[element].length > 13 ? cutString(item[element], 13) : item[element]
|
||||
: isEqual(element, 'date') ?
|
||||
cutStringWithoutDot(item[element], 16)
|
||||
: item[element]
|
||||
item[element].length > 13 ? cutString(item[element], 13) : item[element]
|
||||
: isEqual(element, 'date') ?
|
||||
cutStringWithoutDot(item[element], 16)
|
||||
: item[element]
|
||||
}
|
||||
</Text>
|
||||
</View>
|
||||
|
|
Loading…
Reference in New Issue