mirror of
https://github.com/documenso/documenso
synced 2026-04-21 13:27:18 +00:00
fix: dropdown fields (#2584)
This commit is contained in:
parent
eaaf8f9e63
commit
ef57c8448a
1 changed files with 1 additions and 1 deletions
|
|
@ -96,7 +96,7 @@ export const EditorFieldDropdownForm = ({
|
|||
mode: 'onChange',
|
||||
defaultValues: {
|
||||
defaultValue: value.defaultValue,
|
||||
values: [{ value: t`Option 1` }],
|
||||
values: value.values || [{ value: t`Option 1` }],
|
||||
required: value.required || false,
|
||||
readOnly: value.readOnly || false,
|
||||
fontSize: value.fontSize || DEFAULT_FIELD_FONT_SIZE,
|
||||
|
|
|
|||
Loading…
Reference in a new issue