Skip to content

Commit

Permalink
fix: correct value assignment in validateField function
Browse files Browse the repository at this point in the history
  • Loading branch information
deeonwuli committed Jan 13, 2025
1 parent d37a619 commit c50899a
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
Empty file.
2 changes: 1 addition & 1 deletion src/webapp/components/form/FormFieldsState.ts
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,7 @@ export function validateField(
? {
property: field.id,
errors: errors,
value: field.type === "file" ? field.fileId : field.value,
value: field.value,
}
: undefined;
}
Expand Down

0 comments on commit c50899a

Please sign in to comment.