-
Notifications
You must be signed in to change notification settings - Fork 27
Description
Using the version 1.0.3 with the order capability I encounter the next bugs:
Given schema: { "type": "object", "order": [ "version", "name" ], "properties": { "name": { "type": "string", "title": "Name title" }, "version": { "type": "number", "title": "Version title" } } }
Will throw this error :


And given this schema { "type": "object", "order": [ [ "version", "name" ] ], "properties": { "name": { "type": "string", "title": "Name title" }, "version": { "type": "number", "title": "Version title" } } }
Will throw this error:


This is because the properties keys are the name of a specific child schema and the order and required arrays are using this keys but inside the BaseComponent you modify the name by assigning the title and the getState function from ObjectComponent will return undefined.


