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 a53a84f commit 2d1366cCopy full SHA for 2d1366c
frontend/packages/pydantic-forms/src/core/hooks/usePydanticFormParser.tsx
@@ -33,7 +33,7 @@ const translateLabel = (
33
label?: string,
34
formLabels?: Record<string, string>,
35
): string | undefined => {
36
- const isString = typeof formLabels?.[propertyId] === 'string'
+ const isString = typeof formLabels?.[propertyId] === 'string';
37
return formLabels && formLabels[propertyId] && isString
38
? formLabels[propertyId].toString()
39
: label;
0 commit comments