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
Describe the issue When a oneOf contains an array with minItems the editor do not load existing data correctly.
oneOf
minItems
To Reproduce
Try the editor with the given JSONSchema:
{ "schema": { "type": "object", "oneOf": [ { "title": "Boolean", "properties": { "bool": { "title": "Bool", "type": "boolean" } }, "required": ["bool"] }, { "title": "List", "properties": { "list": { "title": "List", "type": "array", "minItems": 1, "items": { "title": "Item", "type": "string" } } }, "required": ["ipsum"] } ] }, "model": { "list": ["test"] } }
Expected behavior The list should be selected on the editor load.
Note: This problem correspond to an ngx-formly issue: ngx-formly/ngx-formly#3059.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Describe the issue
When a
oneOf
contains an array withminItems
the editor do not load existing data correctly.To Reproduce
Try the editor with the given JSONSchema:
Expected behavior
The list should be selected on the editor load.
Note: This problem correspond to an ngx-formly issue: ngx-formly/ngx-formly#3059.
The text was updated successfully, but these errors were encountered: