Skip to content

Commit

Permalink
fix(procedures): gdpr form fixed issue preventing selection of reason (
Browse files Browse the repository at this point in the history
…#14084)

ref: MANAGER-15932

Signed-off-by: Omar ALKABOUSS MOUSSANA <[email protected]>
  • Loading branch information
oalkabouss authored Nov 18, 2024
1 parent 565c36f commit 4f94308
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,10 @@ export const SelectField: FunctionComponent<Props> = ({
</label>
)}
<OsdsSelect
onOdsValueChange={onChange}
onOdsValueChange={(e) => {
if (!e.target.value) return;
onChange(e);
}}
onBlur={onBlur}
value={value as string}
name={name}
Expand Down

0 comments on commit 4f94308

Please sign in to comment.