aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/eth-balance.js
diff options
context:
space:
mode:
Diffstat (limited to 'ui/app/components/eth-balance.js')
-rw-r--r--ui/app/components/eth-balance.js16
1 files changed, 10 insertions, 6 deletions
diff --git a/ui/app/components/eth-balance.js b/ui/app/components/eth-balance.js
index 301674083..75b6dcb43 100644
--- a/ui/app/components/eth-balance.js
+++ b/ui/app/components/eth-balance.js
@@ -56,16 +56,20 @@ EthBalanceComponent.prototype.renderBalance = function (value) {
}, [
h(tagName, {
style: {
- fontSize: props.fontSize || '12px',
- },
- }, balance + ' '),
- h(tagName, {
- style: {
color: props.labelColor || '#AEAEAE',
fontSize: props.fontSize || '12px',
},
- }, label),
+ }, [
+ h('div', balance),
+ h('div', {
+ style: {
+ color: '#AEAEAE',
+ fontSize: '12px',
+ },
+ }, label),
+ ]),
]),
])
+
)
}