diff options
author | kumavis <aaron@kumavis.me> | 2016-06-24 07:43:10 +0800 |
---|---|---|
committer | kumavis <aaron@kumavis.me> | 2016-06-24 07:43:10 +0800 |
commit | be25f4da06d7651b079f8345cd8dc4f01a2a0002 (patch) | |
tree | ce364ada09665714f4a8150cee4394d1bf77e5de | |
parent | 3cf7bf725f24b81894ded57df2abf7840b27d086 (diff) | |
download | dexon-wallet-be25f4da06d7651b079f8345cd8dc4f01a2a0002.tar.gz dexon-wallet-be25f4da06d7651b079f8345cd8dc4f01a2a0002.tar.zst dexon-wallet-be25f4da06d7651b079f8345cd8dc4f01a2a0002.zip |
pending-tx pass the identicon pref on
-rw-r--r-- | ui/app/components/account-panel.js | 1 | ||||
-rw-r--r-- | ui/app/components/pending-tx.js | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/ui/app/components/account-panel.js b/ui/app/components/account-panel.js index b24d58ac..b98a8cb4 100644 --- a/ui/app/components/account-panel.js +++ b/ui/app/components/account-panel.js @@ -46,6 +46,7 @@ AccountPanel.prototype.render = function () { h('.identicon-wrapper.flex-column.select-none', [ h(Identicon, { address: panelState.identiconKey, + imageify: !state.inlineIdenticons, }), h('span.font-small', panelState.identiconLabel), ]), diff --git a/ui/app/components/pending-tx.js b/ui/app/components/pending-tx.js index e63eba70..48404682 100644 --- a/ui/app/components/pending-tx.js +++ b/ui/app/components/pending-tx.js @@ -45,6 +45,7 @@ PendingTx.prototype.renderGeneric = function (h, state) { showFullAddress: true, identity: identity, account: account, + inlineIdenticons: state.inlineIdenticons, }), // tx data |