aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/balance-component.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/balance-component.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/balance-component.js')
-rw-r--r--ui/app/components/balance-component.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/ui/app/components/balance-component.js b/ui/app/components/balance-component.js
index f85d1cdcd..9b6f13c80 100644
--- a/ui/app/components/balance-component.js
+++ b/ui/app/components/balance-component.js
@@ -35,7 +35,7 @@ BalanceComponent.prototype.render = function () {
const props = this.props
const { token, network, assetImages } = props
const address = token && token.address
- const imageUrl = assetImages && address ? assetImages[token.address] : undefined
+ const image = assetImages && address ? assetImages[token.address] : undefined
return h('div.balance-container', {}, [
@@ -48,7 +48,7 @@ BalanceComponent.prototype.render = function () {
diameter: 50,
address,
network,
- imageUrl,
+ image,
}),
token ? this.renderTokenBalance() : this.renderBalance(),