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 bug which template:
When providing one or multiple nested arrays, it would appears any data prepoulation is limited by the number of fields in the last parent item array.
To Reproduce
Expected behavior Both parents should have different prepopulated data based on the provided data.
Screenshots
{ "schema": { "properties": { "parents": { "type": "array", "items": { "type": "object", "properties": { "children": { "type": "array", "items": { "type": "number" } } } } } } }, "data": { "parents": [ { "children": [ 1, 2, 3, 4 ] }, { "children": [ 4 ] } ] }, "layout": [ { "key": "parents", "items": [ { "key": "parents[].children", "items": [ { "key": "parents[].children[]" } ] } ]} ] }
{ "schema": { "properties": { "parents": { "type": "array", "items": { "type": "object", "properties": { "children": { "type": "array", "items": { "type": "number" } } } } } } }, "data": { "parents": [ { "children": [ 1, 2, 3, 4 ] }, { "children": [ 4 ] } ] } }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Describe the bug
which template:
When providing one or multiple nested arrays, it would appears any data prepoulation is limited by the number of fields in the last parent item array.
To Reproduce
Expected behavior
Both parents should have different prepopulated data based on the provided data.
Screenshots
With layout
Without Layout
The text was updated successfully, but these errors were encountered: