diff options
Diffstat (limited to 'ui/app/components/pending-tx-details.js')
-rw-r--r-- | ui/app/components/pending-tx-details.js | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/ui/app/components/pending-tx-details.js b/ui/app/components/pending-tx-details.js index c9d3251e1..9a06ad09e 100644 --- a/ui/app/components/pending-tx-details.js +++ b/ui/app/components/pending-tx-details.js @@ -165,12 +165,13 @@ PTXP.miniAccountPanelForRecipient = function () { var txData = props.txData var txParams = txData.txParams || {} var isContractDeploy = !('to' in txParams) + var imageify = props.imageifyIdenticons === undefined ? true : props.imageifyIdenticons // If it's not a contract deploy, send to the account if (!isContractDeploy) { return h(MiniAccountPanel, { imageSeed: txParams.to, - imageifyIdenticons: props.imageifyIdenticons, + imageifyIdenticons: imageify, picOrder: 'left', }, [ h('span.font-small', { @@ -184,10 +185,9 @@ PTXP.miniAccountPanelForRecipient = function () { }, }, addressSummary(txParams.to, 6, 4, false)), ]) - } else { return h(MiniAccountPanel, { - imageifyIdenticons: props.imageifyIdenticons, + imageifyIdenticons: imageify, picOrder: 'left', }, [ @@ -224,7 +224,7 @@ PTXP.warnIfNeeded = function () { } -function forwardCarrat(imageify){ +function forwardCarrat (imageify) { if (imageify) { return ( @@ -250,4 +250,4 @@ function forwardCarrat(imageify){ ) } -}
\ No newline at end of file +} |