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
core
5.x
Currently error messages are not getting reset for ArrayFieldItemTemplate, If I have done validation and do removal and new addition.
Error messages should reset.
visit rjsf playground and try array sample used JSON: { "definitions": { "Thing": { "type": "object", "properties": { "name": { "type": "string", "default": "Default name" } } } }, "type": "object", "properties": { "listOfStrings": { "type": "array", "title": "A list of strings", "items": { "type": "string" } } } }
add new row and click on validate
Ideally error message should not come again, if this is a new row. Basically schema is containing errors and not resetting remove and add operation.
- OS: - Node: - npm:
https://rjsf-team.github.io/react-jsonschema-form/
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Prerequisites
What theme are you using?
core
Version
5.x
Current Behavior
Currently error messages are not getting reset for ArrayFieldItemTemplate, If I have done validation and do removal and new addition.
Expected Behavior
Error messages should reset.
Steps To Reproduce
visit rjsf playground and try array sample
used JSON: {
"definitions": {
"Thing": {
"type": "object",
"properties": {
"name": {
"type": "string",
"default": "Default name"
}
}
}
},
"type": "object",
"properties": {
"listOfStrings": {
"type": "array",
"title": "A list of strings",
"items": {
"type": "string"
}
}
}
}
add new row and click on validate
Ideally error message should not come again, if this is a new row. Basically schema is containing errors and not resetting remove and add operation.
Environment
Anything else?
https://rjsf-team.github.io/react-jsonschema-form/
The text was updated successfully, but these errors were encountered: