remove item from dropdown list

pull/5370/head
yann300 5 years ago committed by ioedeveloper
parent 30f026b7ac
commit 7ba1b091dc
  1. 1
      apps/remix-ide/src/app/tabs/test-tab.js

@ -487,6 +487,7 @@ module.exports = class TestTab extends ViewPlugin {
updateDirList (e) {
if (e.keyCode === 191) {
for (var o of this.uiPathList.querySelectorAll('option')) o.remove()
this.testTabLogic.dirList(this._view.el.getElementsByClassName('custom-select')[0].value).then((options) => {
options.forEach((path) => this.uiPathList.appendChild(yo`<option>${path}</option>`))
})

Loading…
Cancel
Save