aboutsummaryrefslogtreecommitdiffstats
path: root/ui
diff options
context:
space:
mode:
authorkumavis <aaron@kumavis.me>2016-06-24 07:18:47 +0800
committerkumavis <aaron@kumavis.me>2016-06-24 07:18:47 +0800
commite96a53385f48da021730b0cc351a223abcc712e3 (patch)
tree85e266a8c45be12d62a245f134ec34b36767173f /ui
parent7eb89613ccee118d97a48d83336bbea44614da18 (diff)
downloadtangerine-wallet-browser-e96a53385f48da021730b0cc351a223abcc712e3.tar.gz
tangerine-wallet-browser-e96a53385f48da021730b0cc351a223abcc712e3.tar.zst
tangerine-wallet-browser-e96a53385f48da021730b0cc351a223abcc712e3.zip
accounts - rename account list item so it doesnt overlap
Diffstat (limited to 'ui')
-rw-r--r--ui/app/accounts/account-list-item.js (renamed from ui/app/accounts/account-panel.js)1
-rw-r--r--ui/app/accounts/index.js4
2 files changed, 3 insertions, 2 deletions
diff --git a/ui/app/accounts/account-panel.js b/ui/app/accounts/account-list-item.js
index af3d0d347..b42de182e 100644
--- a/ui/app/accounts/account-panel.js
+++ b/ui/app/accounts/account-list-item.js
@@ -33,6 +33,7 @@ NewComponent.prototype.render = function () {
this.pendingOrNot(),
h(Identicon, {
address: identity.address,
+ imageify: true,
}),
]),
diff --git a/ui/app/accounts/index.js b/ui/app/accounts/index.js
index 775df400b..f7ae5c53e 100644
--- a/ui/app/accounts/index.js
+++ b/ui/app/accounts/index.js
@@ -5,7 +5,7 @@ const connect = require('react-redux').connect
const actions = require('../actions')
const valuesFor = require('../util').valuesFor
const findDOMNode = require('react-dom').findDOMNode
-const AccountPanel = require('./account-panel')
+const AccountListItem = require('./account-list-item')
module.exports = connect(mapStateToProps)(AccountsScreen)
@@ -74,7 +74,7 @@ AccountsScreen.prototype.render = function () {
}
})
- return h(AccountPanel, {
+ return h(AccountListItem, {
key: `acct-panel-${identity.address}`,
identity,
selectedAddress: this.props.selectedAddress,