aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/token-list.js
diff options
context:
space:
mode:
authorDan Finlay <dan@danfinlay.com>2017-04-25 04:55:19 +0800
committerDan Finlay <dan@danfinlay.com>2017-04-25 04:55:19 +0800
commitbce4af2dcaeeab3bd931afbbcc6f17da675ce2b6 (patch)
treeb35d2ac60642a7eb524a511a2be9a1a31be1ed0f /ui/app/components/token-list.js
parent40e2450022488daa5e36d4c1b866e061bba7c5d2 (diff)
downloadtangerine-wallet-browser-bce4af2dcaeeab3bd931afbbcc6f17da675ce2b6.tar.gz
tangerine-wallet-browser-bce4af2dcaeeab3bd931afbbcc6f17da675ce2b6.tar.zst
tangerine-wallet-browser-bce4af2dcaeeab3bd931afbbcc6f17da675ce2b6.zip
Add placeholder etherscan token icons
Diffstat (limited to 'ui/app/components/token-list.js')
-rw-r--r--ui/app/components/token-list.js8
1 files changed, 7 insertions, 1 deletions
diff --git a/ui/app/components/token-list.js b/ui/app/components/token-list.js
index c6a7d3552..6589dea62 100644
--- a/ui/app/components/token-list.js
+++ b/ui/app/components/token-list.js
@@ -23,9 +23,10 @@ function TokenList () {
TokenList.prototype.render = function () {
const tokens = this.state.tokens
+ const network = this.props.network
const tokenViews = tokens.map((tokenData) => {
- console.log('rendering token with', tokenData)
+ tokenData.network = network
return h(TokenCell, tokenData)
})
@@ -43,6 +44,11 @@ TokenList.prototype.render = function () {
margin-left: 12px;
}
+ li.token-cell:hover {
+ background: white;
+ cursor: pointer;
+ }
+
`)].concat(tokenViews))
)
}