aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/token-cell.js
diff options
context:
space:
mode:
authorDan <danjm.com@gmail.com>2018-06-05 20:26:36 +0800
committerDan <danjm.com@gmail.com>2018-06-05 20:26:36 +0800
commit49f0df31742ed09d74ab9cc55d74f23152c19f20 (patch)
treeb853d92a33b6e551cd79c64b3ad362a9f80b9fc3 /ui/app/components/token-cell.js
parent8f0a3b83111a9ccf5d515cebbd33cabe9ab16ba7 (diff)
parent3b6e96bac918925c4edc674e26dba8cc5feb1324 (diff)
downloadtangerine-wallet-browser-49f0df31742ed09d74ab9cc55d74f23152c19f20.tar.gz
tangerine-wallet-browser-49f0df31742ed09d74ab9cc55d74f23152c19f20.tar.zst
tangerine-wallet-browser-49f0df31742ed09d74ab9cc55d74f23152c19f20.zip
Merge branch 'develop' into handle-import-account-failure-in-ui
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),