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
This is actually an issue with writing angular references in dot notation (see this SO question).
To see the bug in action, open up the example page and use:
Form
[ "*" ]
Schema
{ "type": "object", "title": "Names", "properties": { "buggy-names": { "type": "array", "items": { "type": "object", "properties": { "name": { "title": "Name", "type": "string" } } } } } }
Changing buggy-names to names fixes it.
buggy-names
names
The text was updated successfully, but these errors were encountered:
Ouch, that is not so good. Probably a bug in Select.js
Sorry, something went wrong.
No branches or pull requests
This is actually an issue with writing angular references in dot notation (see this SO question).
To see the bug in action, open up the example page and use:
Form
Schema
Changing
buggy-names
tonames
fixes it.The text was updated successfully, but these errors were encountered: