mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-23 09:52:26 +01:00
Fix Import Account link not hiding sidebar
This commit is contained in:
parent
a9244f5e42
commit
7caa914223
@ -164,7 +164,7 @@ class AccountDropdowns extends Component {
|
||||
}
|
||||
|
||||
renderAccountSelector () {
|
||||
const { actions, useCssTransition, innerStyle } = this.props
|
||||
const { actions, useCssTransition, innerStyle, sidebarOpen } = this.props
|
||||
const { accountSelectorActive, menuItemStyles } = this.state
|
||||
|
||||
return h(
|
||||
@ -223,7 +223,11 @@ class AccountDropdowns extends Component {
|
||||
h(
|
||||
DropdownMenuItem,
|
||||
{
|
||||
closeMenu: () => {},
|
||||
closeMenu: () => {
|
||||
if (sidebarOpen) {
|
||||
actions.hideSidebar()
|
||||
}
|
||||
},
|
||||
onClick: () => actions.showImportPage(),
|
||||
style: Object.assign(
|
||||
{},
|
||||
@ -457,6 +461,7 @@ const mapDispatchToProps = (dispatch) => {
|
||||
function mapStateToProps (state) {
|
||||
return {
|
||||
keyrings: state.metamask.keyrings,
|
||||
sidebarOpen: state.appState.sidebarOpen,
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -45,8 +45,9 @@ WalletView.prototype.renderWalletBalance = function () {
|
||||
selectedAccount,
|
||||
unsetSelectedToken,
|
||||
hideSidebar,
|
||||
sidebarOpen
|
||||
sidebarOpen,
|
||||
} = this.props
|
||||
|
||||
const selectedClass = selectedTokenAddress
|
||||
? ''
|
||||
: 'wallet-balance-wrapper--active'
|
||||
|
Loading…
Reference in New Issue
Block a user