Skip to content

Commit

Permalink
Fixed spelling
Browse files Browse the repository at this point in the history
  • Loading branch information
melloware authored Sep 6, 2023
1 parent 91788ca commit 8e47174
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/lib/inputnumber/InputNumber.js
Original file line number Diff line number Diff line change
Expand Up @@ -510,7 +510,7 @@ export const InputNumber = React.memo(
};

const allowMinusSign = () => {
return ObjetUtils.isEmpty(props.min) || props.min < 0;
return ObjectUtils.isEmpty(props.min) || props.min < 0;
};

const isMinusSign = (char) => {
Expand Down

0 comments on commit 8e47174

Please sign in to comment.