Skip to content

Commit

Permalink
fix: use decimal input for numeric input fields
Browse files Browse the repository at this point in the history
  • Loading branch information
TheJJ committed Aug 18, 2024
1 parent 071c35f commit 71f926a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/apps/web/src/components/NumericInput.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ export const NumericInput: React.FC<NumericInputProps> = ({ value, isCurrency, o
onBlur={onInternalBlur}
onKeyUp={onKeyUp}
variant="standard"
inputProps={{ inputMode: "numeric" }}
inputProps={{ inputMode: "decimal" }}
{...props}
/>
);
Expand Down

0 comments on commit 71f926a

Please sign in to comment.