We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When user hits Enter without selecting a value from suggestions, an error occurs. It should be either handled or validation should be added:
onEnter() { if (this.currentFocus !== -1) { this.selectedSuggestion = this.data[this.currentFocus]; this.inputValue.nativeElement.value = this.selectedSuggestion.value; ... } }
The text was updated successfully, but these errors were encountered:
* removeFocus setFocus methods produce unhandled errors kolkov#45
71edf33
fixed * onEnter method produce unhandled errors kolkov#19 fixed
No branches or pull requests
When user hits Enter without selecting a value from suggestions, an error occurs. It should be either handled or validation should be added:
The text was updated successfully, but these errors were encountered: