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 enter space character in empty input, validation is not working. How to prevent it?
The text was updated successfully, but these errors were encountered:
Still nothing new on that issue ?
Sorry, something went wrong.
Hello, I had the same issue and I fixed modifying the line 161 of smoke.js
Before if (smkType === 'alphanumeric') ...
if (smkType === 'alphanumeric') ...
After if (smkType === 'alphanumeric' || type === 'text')...
if (smkType === 'alphanumeric' || type === 'text')...
With this I have not issues with white spaces when I use inputs type='text'
No branches or pull requests
When user enter space character in empty input, validation is not working.
How to prevent it?
The text was updated successfully, but these errors were encountered: