Closed b1r3k closed 7 years ago
I still have this problem with version 1.0.0.
{
"title": "Maximum call stack",
"description": "Example to reproduce the error.",
"$ref": "#/definitions/Person",
"type": "object",
"definitions": {
"Person": {
"properties": {
"firstName": {
"type": "string",
"title": "First name"
},
"lastName": {
"type": "string",
"title": "Last name"
},
"address": {
"title": "Hello",
"type": "object",
"$ref": "#/definitions/Address"
}
}
},
"Address": {
"properties": {
"street": {
"type": "string",
"title": "address2"
},
"resident": {
"type": "object",
"$ref": "#/definitions/Person"
}
}
}
}
}
did any one got the solution for recursive schema
Prerequisites
Description
Current implementation is not able to handle recursive schema
Steps to Reproduce
See fiddle: https://jsfiddle.net/b1r3k/dssabb76/2/
Expected behavior
Form should be rendered according to valid schema as done for example here
Actual behavior
RangeError exception is being thrown
Version
Current release (0.41.2)