Skip to content

Commit

Permalink
fix: change on wheel
Browse files Browse the repository at this point in the history
  • Loading branch information
gregfrasco committed Dec 1, 2023
1 parent 4a72ab5 commit 71ae2cd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/client/src/components/form/ObserverTextInput.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export const ObserverTextInput: FC<TextInputProps> = (props) => {
<FormControl variant={props.variant} fullWidth={props.fullWidth}>
<DefaultTextInput
{...props}
onWheel={handleBlur}
onWheel={(e) => e.currentTarget.blur()}
onChange={handleChange}
onBlur={handleBlur}
value={values[props.name]}
Expand Down

0 comments on commit 71ae2cd

Please sign in to comment.