aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components
diff options
context:
space:
mode:
Diffstat (limited to 'ui/app/components')
-rw-r--r--ui/app/components/eth-balance.js18
1 files changed, 17 insertions, 1 deletions
diff --git a/ui/app/components/eth-balance.js b/ui/app/components/eth-balance.js
index 710d4fc8b..279feba35 100644
--- a/ui/app/components/eth-balance.js
+++ b/ui/app/components/eth-balance.js
@@ -24,8 +24,24 @@ EthBalanceComponent.prototype.render = function () {
style: {
display: 'inline',
},
- }, value),
+ }, this.renderBalance(value)),
])
)
}
+
+EthBalanceComponent.prototype.renderBalance = function (value) {
+
+ if (value === 'None') return value
+
+ var balance = value[0]
+ var label = value[1]
+
+ return (
+ h('.flex-column',[
+ h('div', balance),
+ h('div', label)
+ ])
+ )
+
+}