ps-toolkit-ui 1.4.70 → 1.4.71

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.
@@ -2524,7 +2524,8 @@
2524
2524
  };
2525
2525
  TableRowComponent.prototype.loadChildren = function (p) {
2526
2526
  var _this = this;
2527
- new RequestClass(this.table.environment, this.table.l).send(this.table.url + ("/" + p), exports.Method.Post, null, this.showChildren, function (result) {
2527
+ var data = { Page: 1, PerPage: -1, Sort: 'Priority', SortType: 'ASC' };
2528
+ new RequestClass(this.table.environment, this.table.l).send(this.table.url + ("/" + p), exports.Method.Post, data, this.showChildren, function (result) {
2528
2529
  _this.children = result.List;
2529
2530
  setTimeout(function () {
2530
2531
  $__namespace(_this.childrenDiv.nativeElement).slideDown();