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
If question_4 or question_5 contain line breaks, they do not pass client side validation. Validator must be updated:
question_4
question_5
regex = /^.{0,200}$/; return regex.test(value);
=>
return value.length <= 200;
The text was updated successfully, but these errors were encountered:
ISBN publisher validators updated.
f1f91e9
Added possibility to use line breaks in question_4 and question_5 fields. #10
Done.
Sorry, something went wrong.
No branches or pull requests
If
question_4
orquestion_5
contain line breaks, they do not pass client side validation. Validator must be updated:=>
The text was updated successfully, but these errors were encountered: