@jsonforms/core 3.5.0-beta.0 → 3.5.0-beta.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
package/src/util/resolvers.ts
CHANGED
|
@@ -127,7 +127,8 @@ const resolveSchemaWithSegments = (
|
|
|
127
127
|
return undefined;
|
|
128
128
|
}
|
|
129
129
|
|
|
130
|
-
|
|
130
|
+
// use typeof because schema can by of any type - check singleSegmentResolveSchema below
|
|
131
|
+
if (typeof schema.$ref === 'string') {
|
|
131
132
|
schema = resolveSchema(rootSchema, schema.$ref, rootSchema);
|
|
132
133
|
}
|
|
133
134
|
|