You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When using it like this: <NumericInput min={-10} max={10} step={0.1} value={0} format={numericInputFormat} />
where: function numericInputFormat(number: number): string { return number + '%'; }
the format function is called after the validation, but with the invalid number and not the max value.
if I put 15, for example, the value will be changed to 10 and then will change again to 15.
The text was updated successfully, but these errors were encountered:
When using it like this:
<NumericInput min={-10} max={10} step={0.1} value={0} format={numericInputFormat} />
where:
function numericInputFormat(number: number): string { return number + '%'; }
the format function is called after the validation, but with the invalid number and not the max value.
if I put 15, for example, the value will be changed to 10 and then will change again to 15.
The text was updated successfully, but these errors were encountered: