Skip to content

Commit

Permalink
fix: removable select value
Browse files Browse the repository at this point in the history
  • Loading branch information
mjatin-dev committed Jan 19, 2025
1 parent 35fe996 commit 45e5db6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions admin-ui/app/routes/Apps/Gluu/GluuRemovableSelectRow.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,10 @@ function GluuRemovableSelectRow({
data-testid={name}
name={name}
defaultValue={value}
onChange={() => {
onChange={(e) => {
setModifiedFields({
...modifiedFields,
[name]: formik.values[name],
[name]: e.target.value,
});
formik.handleChange(e);
}}
Expand Down

0 comments on commit 45e5db6

Please sign in to comment.