Skip to content

Commit

Permalink
[frontend] fix passing props to select field (#1632)
Browse files Browse the repository at this point in the history
  • Loading branch information
guillaumejparis authored Oct 17, 2024
1 parent dc76c54 commit e2fc14b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion openbas-front/src/components/fields/SelectField.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ const SelectField = (props) => {
defaultValue={defaultValue}
control={control}
render={({ field }) => (
<MUISelect {...field}>
<MUISelect {...field} {...others}>
{children}
</MUISelect>
)}
Expand Down

0 comments on commit e2fc14b

Please sign in to comment.