Merge pull request #2136 from ethereum/fixRunCommand

set isOpen to true only if there s autocomplete item to show
pull/3094/head
yann300 5 years ago committed by GitHub
commit 50a07963dd
  1. 3
      src/app/ui/auto-complete-popup.js

@ -140,7 +140,6 @@ class AutoCompletePopup {
let autoCompleteInput = textList.length > 1 ? textList[textList.length - 1] : textList[0]
if (inputString.length >= 2) {
// more than 2 letters, start completion
this.isOpen = true
this.data._options = []
Commands.allPrograms.forEach(item => {
const program = getKeyOf(item)
@ -171,7 +170,7 @@ class AutoCompletePopup {
this.removeAutoComplete()
return
}
if (this.data._options.length) this.isOpen = true
yo.update(this._view, this.render())
return true
}

Loading…
Cancel
Save