We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7037c1a commit 8a213e1Copy full SHA for 8a213e1
packages/material-tree-renderer/src/services/property.util.ts
@@ -155,7 +155,10 @@ const resolveAndMakeSchemaSelfContained = (
155
parentSchema: JsonSchema7,
156
refPath: string
157
): JsonSchema7 => {
158
- const schema: JsonSchema7 = resolveSchema(parentSchema, refPath) as JsonSchema7;
+ const schema: JsonSchema7 = resolveSchema(
159
+ parentSchema,
160
+ refPath
161
+ ) as JsonSchema7;
162
return {
163
...schema,
164
...makeSchemaSelfContained(parentSchema, schema)
0 commit comments