@rjsf/core 6.1.0 → 6.1.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/dist/core.umd.js +2 -2
- package/dist/index.cjs +2 -2
- package/dist/index.cjs.map +2 -2
- package/dist/index.esm.js +2 -2
- package/dist/index.esm.js.map +2 -2
- package/lib/components/fields/ObjectField.js +1 -1
- package/lib/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
- package/src/components/fields/ObjectField.tsx +2 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rjsf/core",
|
|
3
|
-
"version": "6.1.
|
|
3
|
+
"version": "6.1.1",
|
|
4
4
|
"description": "A simple React component capable of building HTML forms out of a JSON schema.",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"compileReplacer": "tsc -p tsconfig.replacer.json && move-file lodashReplacer.js lodashReplacer.cjs",
|
|
@@ -367,9 +367,9 @@ export default function ObjectField<T = any, S extends StrictRJSFSchema = RJSFSc
|
|
|
367
367
|
required={isRequired<S>(schema, name)}
|
|
368
368
|
schema={get(schema, [PROPERTIES_KEY, name], {}) as S}
|
|
369
369
|
uiSchema={fieldUiSchema}
|
|
370
|
-
errorSchema={get(errorSchema, name)}
|
|
370
|
+
errorSchema={get(errorSchema, [name])}
|
|
371
371
|
fieldPathId={childFieldPathId}
|
|
372
|
-
formData={get(formData, name)}
|
|
372
|
+
formData={get(formData, [name])}
|
|
373
373
|
handleKeyRename={handleKeyRename}
|
|
374
374
|
handleRemoveProperty={handleRemoveProperty}
|
|
375
375
|
addedByAdditionalProperties={addedByAdditionalProperties}
|