diff options
author | Chi Kei Chan <chikeichan@gmail.com> | 2017-10-24 15:13:49 +0800 |
---|---|---|
committer | Chi Kei Chan <chikeichan@gmail.com> | 2017-10-24 15:13:49 +0800 |
commit | 4401800a42eccbd77f11b332e1052431328401bb (patch) | |
tree | d5ff4c3e0938f9285ed76ab57e09a6f9fb474392 /ui/app/components | |
parent | a63373401b9983b991d4b2a0e28eec8d66c18e78 (diff) | |
download | tangerine-wallet-browser-4401800a42eccbd77f11b332e1052431328401bb.tar tangerine-wallet-browser-4401800a42eccbd77f11b332e1052431328401bb.tar.gz tangerine-wallet-browser-4401800a42eccbd77f11b332e1052431328401bb.tar.bz2 tangerine-wallet-browser-4401800a42eccbd77f11b332e1052431328401bb.tar.lz tangerine-wallet-browser-4401800a42eccbd77f11b332e1052431328401bb.tar.xz tangerine-wallet-browser-4401800a42eccbd77f11b332e1052431328401bb.tar.zst tangerine-wallet-browser-4401800a42eccbd77f11b332e1052431328401bb.zip |
Account menu white check mark
Diffstat (limited to 'ui/app/components')
-rw-r--r-- | ui/app/components/account-menu/index.js | 6 | ||||
-rw-r--r-- | ui/app/components/tx-view.js | 7 |
2 files changed, 7 insertions, 6 deletions
diff --git a/ui/app/components/account-menu/index.js b/ui/app/components/account-menu/index.js index 45e39e8ba..da2c86233 100644 --- a/ui/app/components/account-menu/index.js +++ b/ui/app/components/account-menu/index.js @@ -98,14 +98,14 @@ AccountMenu.prototype.renderAccounts = function () { const { identities, accounts, - selected, + selectedAddress, keyrings, showAccountDetail, } = this.props return Object.keys(identities).map((key, index) => { const identity = identities[key] - const isSelected = identity.address === selected + const isSelected = identity.address === selectedAddress const balanceValue = accounts[key] ? accounts[key].balance : '' const formattedBalance = balanceValue ? formatBalance(balanceValue, 6) : '...' @@ -121,7 +121,7 @@ AccountMenu.prototype.renderAccounts = function () { { onClick: () => showAccountDetail(identity.address) }, [ h('div.account-menu__check-mark', [ - isSelected ? h('i.fa.fa-check') : null, + isSelected ? h('div.account-menu__check-mark-icon') : null, ]), h( diff --git a/ui/app/components/tx-view.js b/ui/app/components/tx-view.js index d903998c0..ebef22680 100644 --- a/ui/app/components/tx-view.js +++ b/ui/app/components/tx-view.js @@ -109,14 +109,15 @@ TxView.prototype.render = function () { margin: '1em 0.9em', alignItems: 'center', }, - onClick: () => { - this.props.sidebarOpen ? this.props.hideSidebar() : this.props.showSidebar() - }, }, [ h('div.fa.fa-bars', { style: { fontSize: '1.3em', + cursor: 'pointer', + }, + onClick: () => { + this.props.sidebarOpen ? this.props.hideSidebar() : this.props.showSidebar() }, }, []), |