1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-12-23 09:52:26 +01:00

Truncate account name further.

This commit is contained in:
Kevin Serrano 2016-06-28 12:48:03 -07:00
parent 204cb7f1ed
commit 697e8c0768

View File

@ -49,7 +49,7 @@ NewComponent.prototype.render = function () {
overflow: 'hidden', overflow: 'hidden',
textOverflow: 'ellipsis', textOverflow: 'ellipsis',
}, },
}, ethUtil.toChecksumAddress(identity.address)), }, ethUtil.toChecksumAddress(identity.address).substring(0,7)),
h(EtherBalance, { h(EtherBalance, {
value: account.balance, value: account.balance,
}), }),