From dbae6768581f750265b96012c4a6206396740e35 Mon Sep 17 00:00:00 2001 From: Frankie Date: Tue, 28 Jun 2016 18:47:17 -0700 Subject: [PATCH] Make it so that when you click the custom rpc url it closes the dropdown menu --- ui/app/app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/app/app.js b/ui/app/app.js index 0310ec126..992936bc4 100644 --- a/ui/app/app.js +++ b/ui/app/app.js @@ -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 }), }) }