tnx-shared 5.3.164 → 5.3.165

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.
@@ -22696,17 +22696,11 @@
22696
22696
  ListComponentBase.prototype.handleSearch = function (data) {
22697
22697
  return __awaiter(this, void 0, void 0, function () {
22698
22698
  return __generator(this, function (_f) {
22699
- switch (_f.label) {
22700
- case 0:
22701
- this.filter_commonSearch = data.filters;
22702
- this.dataSearchCommon = data.dataForm;
22703
- return [4 /*yield*/, this.onSearched.emit(data)];
22704
- case 1:
22705
- _f.sent();
22706
- this.setting.pageSetting.page = 1;
22707
- this.getData();
22708
- return [2 /*return*/];
22709
- }
22699
+ this.filter_commonSearch = data.filters;
22700
+ this.dataSearchCommon = data.dataForm;
22701
+ this.setting.pageSetting.page = 1;
22702
+ this.getData();
22703
+ return [2 /*return*/];
22710
22704
  });
22711
22705
  });
22712
22706
  };