aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/identicon.js
diff options
context:
space:
mode:
authorEsteban MIno <efmino@uc.cl>2018-08-24 02:54:40 +0800
committerEsteban MIno <efmino@uc.cl>2018-08-24 02:54:40 +0800
commitb59a1e91b8f4b595500a0785f325e833fa35407d (patch)
treee2c8f4e58961d91be4010f16ea2b91723244bddc /ui/app/components/identicon.js
parent56bed3f1bce3cde176784026b10bc3bbe8e819d0 (diff)
downloadtangerine-wallet-browser-b59a1e91b8f4b595500a0785f325e833fa35407d.tar.gz
tangerine-wallet-browser-b59a1e91b8f4b595500a0785f325e833fa35407d.tar.zst
tangerine-wallet-browser-b59a1e91b8f4b595500a0785f325e833fa35407d.zip
typo watchAsset imageUrl to image
Diffstat (limited to 'ui/app/components/identicon.js')
-rw-r--r--ui/app/components/identicon.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/ui/app/components/identicon.js b/ui/app/components/identicon.js
index 6b632352f..076e65b81 100644
--- a/ui/app/components/identicon.js
+++ b/ui/app/components/identicon.js
@@ -26,17 +26,17 @@ function mapStateToProps (state) {
IdenticonComponent.prototype.render = function () {
var props = this.props
- const { className = '', address, imageUrl } = props
+ const { className = '', address, image } = props
var diameter = props.diameter || this.defaultDiameter
const style = {
height: diameter,
width: diameter,
borderRadius: diameter / 2,
}
- if (imageUrl) {
+ if (image) {
return h('img', {
className: `${className} identicon`,
- src: imageUrl,
+ src: image,
style: {
...style,
},