fantonangeli opened a new pull request, #3110: URL: https://github.com/apache/incubator-kie-tools/pull/3110
Closes https://github.com/apache/incubator-kie-tools/issues/3097 This PR reopens: https://github.com/apache/incubator-kie-tools/pull/3100 **Description:** In the data input schema, when we define an input parameter of type object the Dev UI does not render it correctly ``` { "$id": "classpath:/schemas/create-ocp-project-schema.json", "title": "Workflow input data", "$schema": "http://json-schema.org/draft-07/schema#", "type": "object", "properties": { "owner": { "title": "owner", "description": "OCP project to create", "type": "string" }, "repo": { "title": "repo", "description": "OCP project to create", "type": "string" }, "baseBranch": { "title": "baseBranch", "description": "OCP project to create", "type": "string" }, "targetBranch": { "title": "targetBranch", "description": "OCP project to create", "type": "string" }, "obj": { "title": "obj", "description": "test", "type": "object" } }, "required": [ "owner", "repo", "baseBranch", "targetBranch" ] } ``` but in the dev UI I am not able to fill it **Preview:**  -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
