aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/balance-component.js
diff options
context:
space:
mode:
authorAlexander Tseung <alextsg@users.noreply.github.com>2018-11-10 02:17:42 +0800
committerGitHub <noreply@github.com>2018-11-10 02:17:42 +0800
commit83ffb9fafef13357232c1c12d2ff04d32be96a2e (patch)
tree9528f78e0b471d9e31a9c20e6a06fa3ceac3d40e /ui/app/components/balance-component.js
parent8bed073f209a178d73d0a04cc72df034993b0998 (diff)
downloadtangerine-wallet-browser-83ffb9fafef13357232c1c12d2ff04d32be96a2e.tar.gz
tangerine-wallet-browser-83ffb9fafef13357232c1c12d2ff04d32be96a2e.tar.zst
tangerine-wallet-browser-83ffb9fafef13357232c1c12d2ff04d32be96a2e.zip
Increase number of ETH decimals displayed in the balance view from 3 to 4 (#5710)
Diffstat (limited to 'ui/app/components/balance-component.js')
-rw-r--r--ui/app/components/balance-component.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/ui/app/components/balance-component.js b/ui/app/components/balance-component.js
index 0f8514c81..4e2769ee8 100644
--- a/ui/app/components/balance-component.js
+++ b/ui/app/components/balance-component.js
@@ -86,13 +86,13 @@ BalanceComponent.prototype.renderBalance = function () {
className: 'token-amount',
value: balanceValue,
type: PRIMARY,
- ethNumberOfDecimals: 3,
+ ethNumberOfDecimals: 4,
}),
showFiat && h(UserPreferencedCurrencyDisplay, {
value: balanceValue,
type: SECONDARY,
- ethNumberOfDecimals: 3,
+ ethNumberOfDecimals: 4,
}),
])
}