mirror of
https://github.com/BlueWallet/BlueWallet.git
synced 2025-02-24 07:28:07 +01:00
Update details.js
This commit is contained in:
parent
4c886d2b8e
commit
f3f0ed8515
1 changed files with 7 additions and 1 deletions
|
@ -1194,7 +1194,13 @@ export default class SendDetails extends Component {
|
||||||
if (this.state.utxo !== null) {
|
if (this.state.utxo !== null) {
|
||||||
return (
|
return (
|
||||||
<View style={styles.select}>
|
<View style={styles.select}>
|
||||||
<CoinsSelected number={this.state.utxo.length} onClose={() => this.setState({ utxo: null }, this.reCalcTx)} />
|
<CoinsSelected
|
||||||
|
number={this.state.utxo.length}
|
||||||
|
onClose={() => {
|
||||||
|
LayoutAnimation.configureNext(LayoutAnimation.Presets.easeInEaseOut);
|
||||||
|
this.setState({ utxo: null }, this.reCalcTx);
|
||||||
|
}}
|
||||||
|
/>
|
||||||
</View>
|
</View>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue