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), + ]), ]), ]) + ) }