diff --git a/package-lock.json b/package-lock.json index 1963fdb39..4474794c2 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "liquality-wallet", - "version": "0.8.7", + "version": "0.8.8", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index 02c852778..9f8d32147 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "liquality-wallet", - "version": "0.8.7", + "version": "0.8.8", "private": true, "license": "MIT", "author": "Liquality ", diff --git a/src/manifest.json b/src/manifest.json index 378d797ba..e0b1c2850 100644 --- a/src/manifest.json +++ b/src/manifest.json @@ -1,6 +1,6 @@ { "manifest_version": 2, - "version": "0.8.7", + "version": "0.8.8", "name": "Liquality Wallet", "description": "Secure multi-crypto wallet with built-in Atomic Swaps!", "homepage_url": "https://liquality.io", diff --git a/src/views/PermissionSend.vue b/src/views/PermissionSend.vue index f2f501b28..ee584bbea 100644 --- a/src/views/PermissionSend.vue +++ b/src/views/PermissionSend.vue @@ -13,7 +13,7 @@
- +
diff --git a/src/views/Send.vue b/src/views/Send.vue index d48fea738..92bd8396d 100644 --- a/src/views/Send.vue +++ b/src/views/Send.vue @@ -165,9 +165,12 @@ Amount + Fees
-
- {{ amount }} {{ asset }} + {{ totalFee }} {{ feeType }} -
+
+ {{ amountWithFee }} {{ asset }} +
+
+ {{ amount }} {{ asset }} + {{ totalFee }} {{ feeType }} +
${{ totalToSendInFiat }}
@@ -317,8 +320,10 @@ export default { return getFeeLabel(this.selectedFee) }, totalToSendInFiat () { - const total = BN(this.amount).plus(BN(this.totalFee)) - return prettyFiatBalance(total, this.fiatRates[this.asset]) + return prettyFiatBalance(this.amountWithFee, this.fiatRates[this.asset]) + }, + amountWithFee () { + return BN(this.amount).plus(BN(this.totalFee)) } }, methods: { diff --git a/src/views/Swap.vue b/src/views/Swap.vue index fac55d30e..5dcd5be60 100644 --- a/src/views/Swap.vue +++ b/src/views/Swap.vue @@ -265,9 +265,8 @@ -
+
- {{ shortenAddress(sendTo) }} - - - This Wallet -
diff --git a/src/views/TransactionDetails.vue b/src/views/TransactionDetails.vue index c28432879..3be5049a2 100644 --- a/src/views/TransactionDetails.vue +++ b/src/views/TransactionDetails.vue @@ -22,7 +22,7 @@

Network Speed/Fee

{{prettyBalance(tx ? tx.fee : item.tx.fee, item.from)}} {{ assetChain }} | {{ item.fee }} {{ feeUnit }} Speed up

- +