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', overflow: 'hidden',
textOverflow: 'ellipsis', textOverflow: 'ellipsis',
}, },
}, ethUtil.toChecksumAddress(identity.address).substring(0,7)), }, ethUtil.toChecksumAddress(identity.address)),
h(EtherBalance, { h(EtherBalance, {
value: account.balance, value: account.balance,
}), }),

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

Loading…
Cancel
Save