Skip to content

Commit

Permalink
fix(ui:input): fix number decrease
Browse files Browse the repository at this point in the history
  • Loading branch information
xiejay97 committed Mar 15, 2022
1 parent 686ef7e commit f3cfaac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/ui/src/components/input/Input.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@ export function DInput(props: DInputProps): JSX.Element | null {
}
}}
onTouchStart={() => {
handleNumberMouseDown();
handleNumberMouseDown(false);
}}
onTouchEnd={() => {
handleNumberMouseUp();
Expand Down

0 comments on commit f3cfaac

Please sign in to comment.