Skip to content

Commit

Permalink
Merge pull request #214 from TheJJ/numeric-input
Browse files Browse the repository at this point in the history
Numeric input
  • Loading branch information
mikonse authored Mar 11, 2024
2 parents 2943a09 + 236b924 commit 1fd057f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions frontend/apps/web/src/components/NumericInput.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ export const NumericInput: React.FC<NumericInputProps> = ({ value, onChange, ...
onBlur={onInternalBlur}
onKeyUp={onKeyUp}
variant="standard"
inputProps={{ inputmode: "numeric" }}
{...props}
/>
);
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ authors = [
{ name = "Michael Enßlin", email = "[email protected]" }
]
license = { file = "LICENSE" }
dynamic = ["version", "readme"]
dynamic = ["version", "description"]
classifiers = [
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
Expand Down Expand Up @@ -67,7 +67,7 @@ exclude = ["tests*"]

[tool.setuptools.dynamic]
version = { attr = "abrechnung.__version__" }
readme = { file = ["README.md"] }
description = { file = ["README.md"] }

[tool.pylint.MASTER]
extension-pkg-whitelist = [
Expand Down

0 comments on commit 1fd057f

Please sign in to comment.