aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ui/app/components/eth-balance.js11
1 files changed, 10 insertions, 1 deletions
diff --git a/ui/app/components/eth-balance.js b/ui/app/components/eth-balance.js
index 537a51918..75b6dcb43 100644
--- a/ui/app/components/eth-balance.js
+++ b/ui/app/components/eth-balance.js
@@ -59,8 +59,17 @@ EthBalanceComponent.prototype.renderBalance = function (value) {
color: props.labelColor || '#AEAEAE',
fontSize: props.fontSize || '12px',
},
- }, label),
+ }, [
+ h('div', balance),
+ h('div', {
+ style: {
+ color: '#AEAEAE',
+ fontSize: '12px',
+ },
+ }, label),
+ ]),
]),
])
+
)
}