From 42374cf5d40b8266cf7b0ee68732c436c1d45a06 Mon Sep 17 00:00:00 2001 From: Chocobozzz Date: Sun, 25 Jun 2017 11:35:09 +0200 Subject: Fix client admin --- client/src/app/shared/rest/rest-data-source.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'client/src/app/shared') diff --git a/client/src/app/shared/rest/rest-data-source.ts b/client/src/app/shared/rest/rest-data-source.ts index 2ef5d38da..7956637e0 100644 --- a/client/src/app/shared/rest/rest-data-source.ts +++ b/client/src/app/shared/rest/rest-data-source.ts @@ -19,7 +19,7 @@ export class RestDataSource extends ServerDataSource { } protected addSortRequestOptions (requestOptions: RequestOptionsArgs) { - const searchParams = requestOptions.search as URLSearchParams + const searchParams = requestOptions.params as URLSearchParams if (this.sortConf) { this.sortConf.forEach((fieldConf) => { @@ -33,7 +33,7 @@ export class RestDataSource extends ServerDataSource { } protected addPagerRequestOptions (requestOptions: RequestOptionsArgs) { - const searchParams = requestOptions.search as URLSearchParams + const searchParams = requestOptions.params as URLSearchParams if (this.pagingConf && this.pagingConf['page'] && this.pagingConf['perPage']) { const perPage = this.pagingConf['perPage'] -- cgit v1.2.3