Merge pull request #2048 from ethereum/fixAccountListLoad

fix AccountList Loading
pull/1/head
yann300 6 years ago committed by GitHub
commit 0351eb19b6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 5
      src/app/tabs/runTab/settings.js

@ -143,10 +143,11 @@ class SettingsUI {
setInterval(() => { setInterval(() => {
this.updateNetwork() this.updateNetwork()
this.fillAccountsList()
}, 5000) }, 5000)
this.el = el this.el = el
this.fillAccountsList()
return el return el
} }
@ -198,7 +199,6 @@ class SettingsUI {
this.selectExEnv.value = this.settings.getProvider() this.selectExEnv.value = this.settings.getProvider()
this.event.trigger('clearInstance', []) this.event.trigger('clearInstance', [])
this.updateNetwork() this.updateNetwork()
this.fillAccountsList()
this.updatePlusButton() this.updatePlusButton()
} }
@ -310,6 +310,7 @@ class SettingsUI {
let network = this._deps.networkModule.getNetworkProvider let network = this._deps.networkModule.getNetworkProvider
this.netUI.innerHTML = (network() !== 'vm') ? `${name} (${id || '-'}) network` : '' this.netUI.innerHTML = (network() !== 'vm') ? `${name} (${id || '-'}) network` : ''
}) })
this.fillAccountsList()
} }
// TODO: unclear what's the goal of accountListCallId, feels like it can be simplified // TODO: unclear what's the goal of accountListCallId, feels like it can be simplified

Loading…
Cancel
Save