removed paginate pipe

This commit is contained in:
Art Lowel
2017-11-07 13:30:03 +01:00
parent 1b3ade4df5
commit 978c6f9e0b

View File

@@ -11,7 +11,7 @@
(sortFieldChange)="onSortDirectionChange($event)"
(paginationChange)="onPaginationChange($event)">
<ul *ngIf="objects?.hasSucceeded"> <!--class="list-unstyled"-->
<li *ngFor="let object of objects?.payload | paginate: { itemsPerPage: pageInfo?.elementsPerPage, currentPage: pageInfo?.currentPage, totalItems: pageInfo?.totalElements }">
<li *ngFor="let object of objects?.payload">
<ds-wrapper-list-element [object]="object"></ds-wrapper-list-element>
</li>
</ul>