From a71e4ac60124bdf88559f9aac40bb16eafd8be9d Mon Sep 17 00:00:00 2001 From: cebgcontract <99630598+cebgcontract@users.noreply.github.com> Date: Mon, 11 Apr 2022 10:41:29 +0800 Subject: [PATCH] =?UTF-8?q?=E6=A0=BC=E5=BC=8F=E5=8C=96=E6=98=BE=E7=A4=BAet?= =?UTF-8?q?h?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/market/wallet/WalletPanel.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/market/wallet/WalletPanel.vue b/src/components/market/wallet/WalletPanel.vue index fef5ca4..af02edb 100644 --- a/src/components/market/wallet/WalletPanel.vue +++ b/src/components/market/wallet/WalletPanel.vue @@ -222,7 +222,7 @@ export default class WalletPanel extends Vue { const data = this.currencies[i] const currentData = CONTRACT_ADDRESS[data.chain] const eth = await this.chainManager.getBalance(currentData.eth, data.chain) - data.amount = eth + data.amount = formatPrice(eth, 18) this.$set(this.currencies, i, data) } }