aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKevin Serrano <kevgagser@gmail.com>2016-06-29 03:48:03 +0800
committerKevin Serrano <kevgagser@gmail.com>2016-06-29 03:48:03 +0800
commit697e8c07682574c64111901a54f173be54686d25 (patch)
treeceac7c7ac5a461bc0872705bb9122420d45c3ce3
parent204cb7f1edea12c8438655ab3d601d415ab77e54 (diff)
downloadtangerine-wallet-browser-697e8c07682574c64111901a54f173be54686d25.tar.gz
tangerine-wallet-browser-697e8c07682574c64111901a54f173be54686d25.tar.zst
tangerine-wallet-browser-697e8c07682574c64111901a54f173be54686d25.zip
Truncate account name further.
-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 6bba6e145..b17bef711 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)),
+ }, ethUtil.toChecksumAddress(identity.address).substring(0,7)),
h(EtherBalance, {
value: account.balance,
}),