ps-toolkit-ui 1.12.6 → 1.12.7

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.
@@ -6183,7 +6183,7 @@
6183
6183
  return null;
6184
6184
  }
6185
6185
  if (v && _this.inp.type === exports.InputType.Number || _this.inp.type === exports.InputType.Price) {
6186
- v = parseFloat(v.toString().replace(/,/g, ''));
6186
+ v = parseFloat(v.toString().replace(/,/g, '')) || 0;
6187
6187
  }
6188
6188
  return v;
6189
6189
  };