Skip to content

Commit

Permalink
Merge pull request #451 from LuXinZ/develop
Browse files Browse the repository at this point in the history
fix: input value is zero
  • Loading branch information
AruSeito authored Nov 7, 2022
2 parents 0e37139 + d92c682 commit a54925f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ export const WrappedInputNumber = forwardRef<
{
displayName,
value: {
value: value || "",
value: value === undefined ? "" : value,
validateMessage: message,
},
},
Expand Down

0 comments on commit a54925f

Please sign in to comment.