@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.
@@ -286,7 +286,7 @@ const resolveSchemaWithSegments = (schema, pathSegments, rootSchema) => {
286
286
  if (isEmpty(schema)) {
287
287
  return undefined;
288
288
  }
289
- if (schema.$ref) {
289
+ if (typeof schema.$ref === 'string') {
290
290
  schema = resolveSchema(rootSchema, schema.$ref, rootSchema);
291
291
  }
292
292
  if (!pathSegments || pathSegments.length === 0) {