Unverified Commit 0351eb19 authored by yann300's avatar yann300 Committed by GitHub

Merge pull request #2048 from ethereum/fixAccountListLoad

fix AccountList Loading
parents bfd497fe 93fe6915
...@@ -143,10 +143,11 @@ class SettingsUI { ...@@ -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 { ...@@ -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 { ...@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment