Update settings.js

pull/3094/head
Liana Husikyan 6 years ago committed by GitHub
parent 8192fae2e8
commit ae4ecce3d9
  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