1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-22 11:22:43 +02: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',
textOverflow: 'ellipsis',
},
}, ethUtil.toChecksumAddress(identity.address)),
}, ethUtil.toChecksumAddress(identity.address).substring(0,7)),
h(EtherBalance, {
value: account.balance,
}),