diff options
Diffstat (limited to 'ui/app/components/token-cell.js')
-rw-r--r-- | ui/app/components/token-cell.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/app/components/token-cell.js b/ui/app/components/token-cell.js index e3ed734f4..a6fe8fc61 100644 --- a/ui/app/components/token-cell.js +++ b/ui/app/components/token-cell.js @@ -42,7 +42,7 @@ TokenCell.prototype.render = function () { return ( h('div.token-list-item', { - className: `token-list-item ${selectedTokenAddress ? 'token-list-item--active' : ''}`, + className: `token-list-item ${selectedTokenAddress === address ? 'token-list-item--active' : ''}`, // style: { cursor: network === '1' ? 'pointer' : 'default' }, // onClick: this.view.bind(this, address, userAddress, network), onClick: () => setSelectedToken(address), |