intelica-library-ui 0.1.134 → 0.1.135
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.
|
@@ -4281,6 +4281,12 @@ class TableFetchComponent {
|
|
|
4281
4281
|
this.SearchInput = event;
|
|
4282
4282
|
}
|
|
4283
4283
|
const field = this.ListSearchOptions.find(item => item.id === this.SearchInput.fieldId)?.field;
|
|
4284
|
+
if (this.SearchInput?.searchText !== undefined && this.SearchInput?.searchText !== "" && this.ListSearchOptions.length > 0) {
|
|
4285
|
+
if (this.PaginatorTable) {
|
|
4286
|
+
this.PaginatorTable.CurrentPage = 1;
|
|
4287
|
+
this.CurrentPage = 1;
|
|
4288
|
+
}
|
|
4289
|
+
}
|
|
4284
4290
|
const newQueryParameters = {
|
|
4285
4291
|
FilterBy: field || undefined,
|
|
4286
4292
|
FilterValue: this.SearchInput.searchText?.trim(),
|