Open Pimeko opened 2 years ago
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
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