Fix reference in drop menu item

This commit is contained in:
Dan Finlay 2016-07-29 12:22:39 -07:00
parent 8a4d8eca64
commit c7691b7e64
1 changed files with 3 additions and 2 deletions

View File

@ -34,14 +34,15 @@ DropMenuItem.prototype.render = function () {
DropMenuItem.prototype.activeNetworkRender = function () {
let activeNetwork = this.props.activeNetworkRender
let { provider } = this.props
let providerType = provider ? provider.type : null
if (activeNetwork === undefined) return
switch (this.props.label) {
case 'Main Ethereum Network':
if (provider.type === 'mainnet') return h('.check', '✓')
if (providerType === 'mainnet') return h('.check', '✓')
break
case 'Ethereum Classic Network':
if (provider.type === 'classic') return h('.check', '✓')
if (providerType === 'classic') return h('.check', '✓')
break
case 'Morden Test Network':
if (activeNetwork === '2') return h('.check', '✓')