aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorkumavis <kumavis@users.noreply.github.com>2016-06-25 03:09:44 +0800
committerGitHub <noreply@github.com>2016-06-25 03:09:44 +0800
commit251cb84afb91cfbae14f8e68314b57c1e25a4af3 (patch)
tree2927aa11462f558ad676c4774fa11c663fff4a8c
parentd3a8f3eebe3605dc4a0895dcbc9ecbc75301fcb5 (diff)
parentc8b6da2593dfa5f1d589ee26a7343201f8de6f8c (diff)
downloadtangerine-wallet-browser-251cb84afb91cfbae14f8e68314b57c1e25a4af3.tar.gz
tangerine-wallet-browser-251cb84afb91cfbae14f8e68314b57c1e25a4af3.tar.zst
tangerine-wallet-browser-251cb84afb91cfbae14f8e68314b57c1e25a4af3.zip
Merge pull request #322 from MetaMask/i321
identicon - default to imageify
-rw-r--r--ui/app/components/identicon.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/app/components/identicon.js b/ui/app/components/identicon.js
index c17bd5122..4b2bf899e 100644
--- a/ui/app/components/identicon.js
+++ b/ui/app/components/identicon.js
@@ -40,7 +40,7 @@ IdenticonComponent.prototype.componentDidMount = function () {
var container = findDOMNode(this)
var diameter = state.diameter || this.defaultDiameter
- var imageify = state.imageify
+ var imageify = state.imageify === undefined ? true : state.imageify
var img = iconFactory.iconForAddress(address, diameter, imageify)
container.appendChild(img)
}