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
Hi!
First of all thank you so much for this awesome component, it's truly a delight to use, congrats!!
I noticed an uncaught error. When setting the prop simpleInput to true and using the up/down arrow, this error comes up:
simpleInput
I think simply adding it as a condition in eventsListener.js method onSelectByArrow(e) would sove it, like so:
onSelectByArrow(e)
onSelectByArrow (e) { e.preventDefault() if (this.disabled || this.readonly || this.simpleInput) return ...
Cheers
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi!
First of all thank you so much for this awesome component, it's truly a delight to use, congrats!!
I noticed an uncaught error.
When setting the prop
simpleInput
to true and using the up/down arrow, this error comes up:I think simply adding it as a condition in eventsListener.js method
onSelectByArrow(e)
would sove it, like so:Cheers
The text was updated successfully, but these errors were encountered: