mirror of
https://github.com/Qortal/qortal-ui.git
synced 2025-04-23 11:27:52 +00:00
Fix 0 balance button to small
This commit is contained in:
parent
2089da32fa
commit
15304cd861
@ -552,7 +552,7 @@ class MultiWallet extends LitElement {
|
|||||||
this.sendMoneyLoading = false
|
this.sendMoneyLoading = false
|
||||||
this.isValidAmount = false
|
this.isValidAmount = false
|
||||||
this.btnDisable = false
|
this.btnDisable = false
|
||||||
this.balance = 0
|
this.balance = 0
|
||||||
this.amount = 0
|
this.amount = 0
|
||||||
this.btcAmount = 0
|
this.btcAmount = 0
|
||||||
this.ltcAmount = 0
|
this.ltcAmount = 0
|
||||||
@ -1747,7 +1747,7 @@ class MultiWallet extends LitElement {
|
|||||||
parentEpml.request('showSnackBar', `Failed to Fetch QORT Balance. Try again!`)
|
parentEpml.request('showSnackBar', `Failed to Fetch QORT Balance. Try again!`)
|
||||||
} else {
|
} else {
|
||||||
if (this._selectedWallet == coin) {
|
if (this._selectedWallet == coin) {
|
||||||
this.wallets.get(coin).balance = res
|
this.wallets.get(coin).balance = Number(res).toFixed(8)
|
||||||
this.balanceString = this.wallets.get(this._selectedWallet).balance + " " + this._selectedWallet.toLocaleUpperCase()
|
this.balanceString = this.wallets.get(this._selectedWallet).balance + " " + this._selectedWallet.toLocaleUpperCase()
|
||||||
this.balance = this.wallets.get(this._selectedWallet).balance
|
this.balance = this.wallets.get(this._selectedWallet).balance
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user