aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/token-list.js
diff options
context:
space:
mode:
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))
)
}