aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/core
diff options
context:
space:
mode:
Diffstat (limited to 'client/src/app/core')
-rw-r--r--client/src/app/core/rest/rest-table.ts5
1 files changed, 5 insertions, 0 deletions
diff --git a/client/src/app/core/rest/rest-table.ts b/client/src/app/core/rest/rest-table.ts
index 7b765f7fc..cb5bd0b89 100644
--- a/client/src/app/core/rest/rest-table.ts
+++ b/client/src/app/core/rest/rest-table.ts
@@ -65,6 +65,11 @@ export abstract class RestTable {
65 } 65 }
66 66
67 onSearch (search: string) { 67 onSearch (search: string) {
68 this.pagination = {
69 start: 0,
70 count: this.rowsPerPage
71 }
72
68 this.search = search 73 this.search = search
69 this.reloadData() 74 this.reloadData()
70 } 75 }