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
A JS error is thrown when attempting to add an item to a new inner list of a nested list.
Items should be able to be added.
A JS error is thrown and no items can be added.
The problem is the schema becomes:
{ "nestedList": [ [ "lorem", "ipsum" ], null . // problem here ] }
It should be:
{ "nestedList": [ [ "lorem", "ipsum" ], [] . // fixed ] }
1.6.1
The text was updated successfully, but these errors were encountered:
Fixed in #1335
Sorry, something went wrong.
No branches or pull requests
Description
A JS error is thrown when attempting to add an item to a new inner list of a nested list.
Steps to Reproduce
Expected behavior
Items should be able to be added.
Actual behavior
A JS error is thrown and no items can be added.
The problem is the schema becomes:
It should be:
Version
1.6.1
The text was updated successfully, but these errors were encountered: