mirror of
https://github.com/ToolJet/ToolJet
synced 2026-05-23 08:58:26 +00:00
fix: default value on legacy dropdown component (#10526)
This commit is contained in:
parent
0526d57c0c
commit
d3fce7f59b
1 changed files with 1 additions and 1 deletions
|
|
@ -54,7 +54,7 @@ export const generateSchemaFromValidationDefinition = (definition, recursionDept
|
|||
}
|
||||
case 'union': {
|
||||
schema = union(
|
||||
definition.schemas?.map((subSchema) => generateSchemaFromValidationDefinition(subSchema, recursionDepth))
|
||||
definition.schemas?.map((subSchema) => generateSchemaFromValidationDefinition(subSchema, recursionDepth + 1))
|
||||
);
|
||||
break;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue