aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/token-cell.js
diff options
context:
space:
mode:
authorDan J Miller <danjm.com@gmail.com>2018-06-05 01:29:03 +0800
committerGitHub <noreply@github.com>2018-06-05 01:29:03 +0800
commit5d58f0e9a02872cff298b8b9604c395688fd6c6c (patch)
tree27878ea9b133e84e47937b5568ccfa4ca3976187 /ui/app/components/token-cell.js
parent3aa4c3b804f69a2ec3b30c083ccdfbec9951c648 (diff)
parente6769bde5ba0597a7349e55f9a6934c6ae1c6f32 (diff)
downloadtangerine-wallet-browser-5d58f0e9a02872cff298b8b9604c395688fd6c6c.tar.gz
tangerine-wallet-browser-5d58f0e9a02872cff298b8b9604c395688fd6c6c.tar.zst
tangerine-wallet-browser-5d58f0e9a02872cff298b8b9604c395688fd6c6c.zip
Merge pull request #4428 from MetaMask/fix-tokenlist-balance-overflow
Token name is not hidden in wallet if balance is exceptionally long.
Diffstat (limited to 'ui/app/components/token-cell.js')
-rw-r--r--ui/app/components/token-cell.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/ui/app/components/token-cell.js b/ui/app/components/token-cell.js
index c84117d84..4100d76a5 100644
--- a/ui/app/components/token-cell.js
+++ b/ui/app/components/token-cell.js
@@ -101,8 +101,8 @@ TokenCell.prototype.render = function () {
h('div.token-list-item__balance-ellipsis', null, [
h('div.token-list-item__balance-wrapper', null, [
- h('h3.token-list-item__token-balance', `${string || 0} ${symbol}`),
-
+ h('div.token-list-item__token-balance', `${string || 0}`),
+ h('div.token-list-item__token-symbol', symbol),
showFiat && h('div.token-list-item__fiat-amount', {
style: {},
}, formattedFiat),