Skip to content

Commit

Permalink
Merge pull request #224 from SFTtech/jj/decimal-input
Browse files Browse the repository at this point in the history
fix: use decimal input for numeric input fields
  • Loading branch information
mikonse authored Aug 18, 2024
2 parents 071c35f + 71f926a commit 2974d6c
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 2974d6c

Please sign in to comment.