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
Vuetify Version: 3.7.7 Vue Version: 3.5.13 Browsers: Edge 132.0.0.0 OS: Windows 10
Error message ("Max 20 characters") should show on input attempt (type or paste).
No message is shown.
https://play.vuetifyjs.com/#...
The text was updated successfully, but these errors were encountered:
Change condition to counter: value => value.length < 20 || 'Max 20 characters',
counter: value => value.length < 20 || 'Max 20 characters',
Sorry, something went wrong.
Then the error message is shown on reaching 20th character, which is still incorrect.
20 characters in the input should still meet the rule. Only the attempt to go over should trigger the error message.
You have maxlength="20" which prevents a 21st character from even being entered.
maxlength="20"
No branches or pull requests
Environment
Vuetify Version: 3.7.7
Vue Version: 3.5.13
Browsers: Edge 132.0.0.0
OS: Windows 10
Steps to reproduce
Expected Behavior
Error message ("Max 20 characters") should show on input attempt (type or paste).
Actual Behavior
No message is shown.
Reproduction Link
https://play.vuetifyjs.com/#...
The text was updated successfully, but these errors were encountered: