diff options
Diffstat (limited to 'ui/app/app.js')
-rw-r--r-- | ui/app/app.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ui/app/app.js b/ui/app/app.js index 80521d220..8aab63a6a 100644 --- a/ui/app/app.js +++ b/ui/app/app.js @@ -212,14 +212,14 @@ App.prototype.renderNetworkDropdown = function () { label: 'Main Ethereum Network', closeMenu: () => this.setState({ isNetworkMenuOpen: false }), action: () => props.dispatch(actions.setProviderType('mainnet')), - icon: h('.menu-icon.ether-icon'), + icon: h('.menu-icon.diamond'), }), h(DropMenuItem, { label: 'Morden Test Network', closeMenu: () => this.setState({ isNetworkMenuOpen: false }), action: () => props.dispatch(actions.setProviderType('testnet')), - icon: h('.menu-icon.morden-icon'), + icon: h('.menu-icon.red-dot'), }), h(DropMenuItem, { |