diff options
Diffstat (limited to 'ui/app/app.js')
-rw-r--r-- | ui/app/app.js | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/ui/app/app.js b/ui/app/app.js index 8297ed796..a79666f58 100644 --- a/ui/app/app.js +++ b/ui/app/app.js @@ -139,7 +139,7 @@ App.prototype.renderAppBar = function () { h('h1', { style: { position: 'relative', - left: '3px', + left: '9px', }, }, 'MetaMask'), @@ -214,6 +214,7 @@ App.prototype.renderNetworkDropdown = function () { closeMenu: () => this.setState({ isNetworkMenuOpen: false }), action: () => props.dispatch(actions.setProviderType('mainnet')), icon: h('.menu-icon.diamond'), + activeNetworkRender: props.network, }), h(DropMenuItem, { @@ -221,6 +222,7 @@ App.prototype.renderNetworkDropdown = function () { closeMenu: () => this.setState({ isNetworkMenuOpen: false }), action: () => props.dispatch(actions.setProviderType('testnet')), icon: h('.menu-icon.red-dot'), + activeNetworkRender: props.network, }), h(DropMenuItem, { @@ -228,6 +230,7 @@ App.prototype.renderNetworkDropdown = function () { closeMenu: () => this.setState({ isNetworkMenuOpen: false }), action: () => props.dispatch(actions.setRpcTarget('http://localhost:8545')), icon: h('i.fa.fa-question-circle.fa-lg', { ariaHidden: true }), + activeNetworkRender: props.provider.rpcTarget, }), this.renderCustomOption(props.provider.rpcTarget), ]) @@ -367,12 +370,20 @@ App.prototype.renderCustomOption = function (rpcTarget) { action: () => this.props.dispatch(actions.showConfigPage()), icon: h('i.fa.fa-question-circle.fa-lg', { ariaHidden: true }), }) + case 'http://localhost:8545': + return h(DropMenuItem, { + label: 'Custom RPC', + closeMenu: () => this.setState({ isNetworkMenuOpen: false }), + action: () => this.props.dispatch(actions.showConfigPage()), + icon: h('i.fa.fa-question-circle.fa-lg', { ariaHidden: true }), + }) default: return h(DropMenuItem, { label: `${rpcTarget}`, closeMenu: () => this.setState({ isNetworkMenuOpen: false }), icon: h('i.fa.fa-question-circle.fa-lg', { ariaHidden: true }), + activeNetworkRender: 'custom', }) } } |