fix binding issue with network module call

pull/1/head
Iuri Matias 5 years ago
parent f51f3308e6
commit 3e47a365b0
  1. 2
      src/app/tabs/runTab/settings.js

@ -320,7 +320,7 @@ class SettingsUI {
this.netUI.innerHTML = 'can\'t detect network '
return
}
let network = this._components.networkModule.getNetworkProvider
let network = this._components.networkModule.getNetworkProvider.bind(this._components.networkModule)
this.netUI.innerHTML = (network() !== 'vm') ? `${name} (${id || '-'}) network` : ''
})
this.fillAccountsList()

Loading…
Cancel
Save