@rjsf/core 6.0.0-beta.6 → 6.0.0-beta.7

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/dist/core.umd.js CHANGED
@@ -1096,7 +1096,7 @@
1096
1096
  if (isString(gridSchema) || isUndefined(gridSchema)) {
1097
1097
  name = gridSchema ?? "";
1098
1098
  } else {
1099
- const { name: innerName, render, ...innerProps } = gridSchema;
1099
+ const { name: innerName = "", render, ...innerProps } = gridSchema;
1100
1100
  name = innerName;
1101
1101
  uiProps = innerProps;
1102
1102
  if (!isEmpty(uiProps)) {
package/dist/index.esm.js CHANGED
@@ -1185,7 +1185,7 @@ var LayoutGridField = class _LayoutGridField extends PureComponent {
1185
1185
  if (isString(gridSchema) || isUndefined(gridSchema)) {
1186
1186
  name = gridSchema ?? "";
1187
1187
  } else {
1188
- const { name: innerName, render, ...innerProps } = gridSchema;
1188
+ const { name: innerName = "", render, ...innerProps } = gridSchema;
1189
1189
  name = innerName;
1190
1190
  uiProps = innerProps;
1191
1191
  if (!isEmpty(uiProps)) {