diff options
author | Chocobozzz <florian.bigard@gmail.com> | 2016-07-06 19:56:23 +0200 |
---|---|---|
committer | Chocobozzz <florian.bigard@gmail.com> | 2016-07-06 19:56:23 +0200 |
commit | efb9afc3e8b031c5dde532e3616caac2313e670a (patch) | |
tree | cb4353536af4d51f74b9bee6f7ea6f6f909a5f7b | |
parent | 6666aad4599a78f98f39409ec0d45391da7bd2d0 (diff) | |
download | PeerTube-efb9afc3e8b031c5dde532e3616caac2313e670a.tar.gz PeerTube-efb9afc3e8b031c5dde532e3616caac2313e670a.tar.zst PeerTube-efb9afc3e8b031c5dde532e3616caac2313e670a.zip |
Client: fix pagination component
-rw-r--r-- | client/src/app/videos/video-list/video-list.component.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/client/src/app/videos/video-list/video-list.component.html b/client/src/app/videos/video-list/video-list.component.html index 00392a81f..52abc3dc2 100644 --- a/client/src/app/videos/video-list/video-list.component.html +++ b/client/src/app/videos/video-list/video-list.component.html | |||
@@ -15,6 +15,6 @@ | |||
15 | </div> | 15 | </div> |
16 | 16 | ||
17 | <pagination | 17 | <pagination |
18 | [totalItems]="pagination.total" [itemsPerPage]="pagination.itemsPerPage" [(ngModel)]="pagination.currentPage" | 18 | [totalItems]="pagination.total" [itemsPerPage]="pagination.itemsPerPage" [maxSize]="6" [boundaryLinks]="true" [rotate]="false" |
19 | (ngModelChange)="getVideos()" | 19 | (ngModelChange)="getVideos()" [(ngModel)]="pagination.currentPage" |
20 | ></pagination> | 20 | ></pagination> |