ps-toolkit-ui 1.4.89 → 1.4.90

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.
@@ -4949,7 +4949,7 @@
4949
4949
  var _this = this;
4950
4950
  this.inp.load();
4951
4951
  this.inp.setValue = function (v) {
4952
- _this.inp.value = v.toString();
4952
+ _this.inp.value = v !== null ? v.toString() : null;
4953
4953
  if (_this.inp.value == null && _this.inp.options.length > 0) {
4954
4954
  _this.inp.value = _this.inp.options.find(function (x) { return true; }).value;
4955
4955
  }