1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-22 11:22:43 +02:00

eth-balance fix

This commit is contained in:
kumavis 2016-07-07 17:34:30 -07:00
parent 501ffba6f2
commit d2eab80e09

View File

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