otp-input-vue
otp-input-vue copied to clipboard
[Bug]: plus and minus sign bugs
Contact Details
No response
What happened?
When typing the “number” input fields with + or - sign, bugs happened (on all browsers).
Can those sign be removed automatically when type is number while typing ?
Thanks
What is your browser that you see the problem on?
Chrome
Hi, Thank you for using and announcement about issue,I will working on it and resolve the issue. @RtthLvr
I’m able to get it properly working by directly change <input type="number"> value by adding this line
this.$refs.digitInput[index].value = first === null || first === undefined ? '' : first
before this line
this.inputValue[index] = first === null || first === undefined ? '' : first
and issue is gone