diff options
eth-balance fix
-rw-r--r-- | ui/app/components/eth-balance.js | 11 |
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), + ]), ]), ]) + ) } |