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.
1 parent 6898f69 commit b79d474Copy full SHA for b79d474
frontend/packages/pydantic-forms/src/core/helper.ts
@@ -403,8 +403,8 @@ export const getPydanticFormComponents = (
403
properties: Properties,
404
componentMatcher: PydanticFormsContextConfig['componentMatcher'],
405
): PydanticFormComponents => {
406
- const components: PydanticFormComponents = Object.entries(properties).map(
407
- ([, pydanticFormField]) => {
+ const components: PydanticFormComponents = Object.values(properties).map(
+ (pydanticFormField) => {
408
return fieldToComponentMatcher(pydanticFormField, componentMatcher);
409
},
410
);
0 commit comments