ps-toolkit-ui 1.10.82 → 1.10.83

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -6040,7 +6040,7 @@
6040
6040
  }
6041
6041
  }
6042
6042
  if (_this.inp.type === exports.InputType.Number || _this.inp.type === exports.InputType.Price) {
6043
- var v = parseFloat(_this.inp.value.replace(/,/g, ''));
6043
+ var v = parseFloat(_this.inp.value.toString().replace(/,/g, ''));
6044
6044
  if (_this.inp.required && _this.inp.minLength !== -1 && v < _this.inp.minLength) {
6045
6045
  _this.inp.error = exports.InputError.MinAmount;
6046
6046
  return false;