diff --git a/src/lib/listing/services/paginated-entities.service.ts b/src/lib/listing/services/paginated-entities.service.ts index 13a37b5..cf8b16c 100644 --- a/src/lib/listing/services/paginated-entities.service.ts +++ b/src/lib/listing/services/paginated-entities.service.ts @@ -44,14 +44,9 @@ export class PaginatedEntitiesService< return this._currentConfig; } - constructor() { - super(); - console.log('PaginatedEntitiesService'); - } - - updateSearchOptionsAndReloadPage(options: SearchOptions): Observable { + updateSearchOptionsAndReload(options: SearchOptions): Observable { this._currentConfig = { ...this._currentConfig, options }; - return this.loadPage(); + return this.loadPage(0); } reloadPage(): Observable {