We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1643ffc commit f914adcCopy full SHA for f914adc
src/PropertyGrid.ts
@@ -87,7 +87,7 @@ export function typeInfoFromJsonSchema(jsonSchemaObj: any, obj: any, type: strin
87
if (prpObj.$ref) {
88
if ((<string>prpObj.$ref).startsWith('#/')) {
89
const linkName = (<string>prpObj.$ref).substring(2);
90
- prpObj = deepValue(def, linkName, false, '/');
+ prpObj = deepValue(jsonSchemaObj, linkName, false, '/');
91
}
92
93
p.type = prpObj.type ?? 'any';
0 commit comments