Closed
Description
I'm generating the properties of the schema dynamically and there could be the case of no fields needed for some use cases.
In this event the form is like:
[
"*",
{
"type": "submit",
"title": "OK"
}
]
While the schema is:
{
"type": "object",
"title": "Types",
"properties": {}
}
I'm expecting to have an empty form with just the submit button instead I get nothing.
Any hint?
Thanks