ps-toolkit-ui 1.10.2 → 1.10.3

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.
@@ -3359,8 +3359,8 @@
3359
3359
  if ($__namespace(e.target).closest('.header-search').hasClass('header-search')) {
3360
3360
  return;
3361
3361
  }
3362
- this.table.sortType = this.table.sort === s ? this.table.sortType === 'ASC' ? 'DESC' : 'ASC' : 'ASC';
3363
- this.table.sort = s;
3362
+ this.table.sortType = this.table.sort === s ? this.table.sortType === 'ASC' ? 'DESC' : null : 'ASC';
3363
+ this.table.sort = this.table.sortType == null ? null : s;
3364
3364
  this.table.load();
3365
3365
  };
3366
3366
  TableComponent.prototype.getModals = function () {