diff --git a/web-app/src/app/routes/monitor/monitor-list/monitor-list.component.ts b/web-app/src/app/routes/monitor/monitor-list/monitor-list.component.ts index 6169fe880ff..a686d786e14 100644 --- a/web-app/src/app/routes/monitor/monitor-list/monitor-list.component.ts +++ b/web-app/src/app/routes/monitor/monitor-list/monitor-list.component.ts @@ -506,7 +506,7 @@ export class MonitorListComponent implements OnInit, OnDestroy { const currentSort = sort.find(item => item.value !== null); const sortField = (currentSort && currentSort.key) || null; const sortOrder = (currentSort && currentSort.value) || null; - // this.changeMonitorTable(sortField, sortOrder); + this.changeMonitorTable(sortField, sortOrder); } // begin: app type search filter diff --git a/web-app/src/app/service/monitor.service.ts b/web-app/src/app/service/monitor.service.ts index 0849145cd79..ba215cb514c 100644 --- a/web-app/src/app/service/monitor.service.ts +++ b/web-app/src/app/service/monitor.service.ts @@ -114,38 +114,6 @@ export class MonitorService { return this.http.get>(`${monitors_uri}/${app}`); } - public getMonitors( - app: string | undefined, - tag: string | undefined, - pageIndex: number, - pageSize: number, - sortField?: string | null, - sortOrder?: string | null - ): Observable>> { - pageIndex = pageIndex ? pageIndex : 0; - pageSize = pageSize ? pageSize : 8; - // HttpParams is unmodifiable, so we need to save the return value of append/set - let httpParams = new HttpParams(); - httpParams = httpParams.appendAll({ - pageIndex: pageIndex, - pageSize: pageSize - }); - if (app != undefined) { - httpParams = httpParams.append('app', app.trim()); - } - if (tag != undefined) { - httpParams = httpParams.append('tag', tag); - } - if (sortField != null && sortOrder != null) { - httpParams = httpParams.appendAll({ - sort: sortField, - order: sortOrder == 'ascend' ? 'asc' : 'desc' - }); - } - const options = { params: httpParams }; - return this.http.get>>(monitors_uri, options); - } - public searchMonitors( app: string | undefined, tag: string | undefined,