Wallet name now is properly truncated.

feature/default_network_editable
Kevin Serrano 9 years ago
parent 697e8c0768
commit f9540cf48c
  1. 2
      ui/app/accounts/account-list-item.js
  2. 2
      ui/app/components/account-panel.js

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

@ -48,7 +48,7 @@ AccountPanel.prototype.render = function () {
address: panelState.identiconKey,
imageify: state.imageifyIdenticons,
}),
h('span.font-small', panelState.identiconLabel),
h('span.font-small', panelState.identiconLabel.substring(0, 7) + '...'),
]),
// account address, balance

Loading…
Cancel
Save