1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-12-23 09:52:26 +01:00

Make it so that when you click the custom rpc url it closes the dropdown menu

This commit is contained in:
Frankie 2016-06-28 18:47:17 -07:00
parent f3119d40f5
commit dbae676858

View File

@ -372,7 +372,7 @@ App.prototype.renderCustomOption = function (rpcTarget) {
return h(DropMenuItem, {
label: `${rpcTarget}`,
closeMenu: () => this.setState({ isNetworkMenuOpen: false }),
action: () => this.props.dispatch(actions.showConfigPage()),
action: () => this.props.dispatch(actions.closeMenu()),
icon: h('i.fa.fa-question-circle.fa-lg', { ariaHidden: true }),
})
}