We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents b0897ad + 7c3afbd commit 75fdc2fCopy full SHA for 75fdc2f
utils/api/configurations.js
@@ -276,7 +276,11 @@ export const configureDynamicFormSchema = (defaultSchema) => {
276
adjustedProperty = { ...remainingProperties }
277
}
278
279
- propertyFields[key] = adjustedProperty
+ if (value.type !== 'array') {
280
+ // TODO(alishaevn): figure out the "items" property for arrays
281
+ // ref: https://react-jsonschema-form.readthedocs.io/en/v1.8.1/form-customization/#form-customization
282
+ propertyFields[key] = adjustedProperty
283
+ }
284
285
})
286
0 commit comments