ps-toolkit-ui 1.20.39 → 1.20.40

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.
@@ -2599,7 +2599,7 @@
2599
2599
  if (s) {
2600
2600
  _this.value = s.Id.toString();
2601
2601
  }
2602
- // this.setOptions(r);
2602
+ _this.setOptions(r);
2603
2603
  }
2604
2604
  else if (_this.type === exports.InputType.Tree || _this.type === exports.InputType.TreeRadio) {
2605
2605
  _this.rows = _this.getRows(result, null);
@@ -2637,11 +2637,11 @@
2637
2637
  }
2638
2638
  };
2639
2639
  InputClass.prototype.setOptions = function (r) {
2640
- var _this = this;
2641
2640
  this.options = r;
2642
2641
  if (this.value != null) {
2643
2642
  setTimeout(function () {
2644
- _this.setValue(_this.value, true);
2643
+ console.log('this.setValue(this.value, true)');
2644
+ // this.setValue(this.value, true);
2645
2645
  }, 500);
2646
2646
  }
2647
2647
  };