Add check for active suggestion (#1180)

This commit is contained in:
Matthew Jarman
2020-09-21 17:44:16 +01:00
committed by GitHub
parent db081d3197
commit 45fb612793

View File

@@ -161,10 +161,15 @@ export default {
break
case "Tab":
event.preventDefault()
let activeSuggestion = this.suggestions[
this.currentSuggestionIndex >= 0 ? this.currentSuggestionIndex : 0
]
if (!activeSuggestion) {
return
}
event.preventDefault()
let input = this.text.substring(0, this.selectionStart)
this.text = input + activeSuggestion
break