You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Then when you create the form if you don't add a section for whatever reason when you submit it gives 'Cannot read property xxx of undefined' because it's iterating through all the form sections and binding the data to each section and when there is no data for that section it dies.
I'll submit a test case and pull request later, just jotting this down here for anyone else encountering a similar issue.
The text was updated successfully, but these errors were encountered:
If you create a form that is an object with multiple other forms inside it like so:
{
'user_details': {
'name': fields.string({})
}
'address': {
'street': fields.string({})
}
}
Then when you create the form if you don't add a section for whatever reason when you submit it gives 'Cannot read property xxx of undefined' because it's iterating through all the form sections and binding the data to each section and when there is no data for that section it dies.
I'll submit a test case and pull request later, just jotting this down here for anyone else encountering a similar issue.
The text was updated successfully, but these errors were encountered: