aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/accounts
diff options
context:
space:
mode:
authorKevin Serrano <kevgagser@gmail.com>2016-06-29 04:07:46 +0800
committerKevin Serrano <kevgagser@gmail.com>2016-06-29 04:07:46 +0800
commitf9540cf48c9f7e42c41e9e1648bb57ee2b5d441f (patch)
tree7282dd3e8d634a1ffa6da25617a0b18201880c4b /ui/app/accounts
parent697e8c07682574c64111901a54f173be54686d25 (diff)
downloadtangerine-wallet-browser-f9540cf48c9f7e42c41e9e1648bb57ee2b5d441f.tar.gz
tangerine-wallet-browser-f9540cf48c9f7e42c41e9e1648bb57ee2b5d441f.tar.zst
tangerine-wallet-browser-f9540cf48c9f7e42c41e9e1648bb57ee2b5d441f.zip
Wallet name now is properly truncated.
Diffstat (limited to 'ui/app/accounts')
-rw-r--r--ui/app/accounts/account-list-item.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/app/accounts/account-list-item.js b/ui/app/accounts/account-list-item.js
index b17bef711..6bba6e145 100644
--- a/ui/app/accounts/account-list-item.js
+++ b/ui/app/accounts/account-list-item.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,
}),