aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app
diff options
context:
space:
mode:
authorChocobozzz <florian.bigard@gmail.com>2016-07-06 19:56:23 +0200
committerChocobozzz <florian.bigard@gmail.com>2016-07-06 19:56:23 +0200
commitefb9afc3e8b031c5dde532e3616caac2313e670a (patch)
treecb4353536af4d51f74b9bee6f7ea6f6f909a5f7b /client/src/app
parent6666aad4599a78f98f39409ec0d45391da7bd2d0 (diff)
downloadPeerTube-efb9afc3e8b031c5dde532e3616caac2313e670a.tar.gz
PeerTube-efb9afc3e8b031c5dde532e3616caac2313e670a.tar.zst
PeerTube-efb9afc3e8b031c5dde532e3616caac2313e670a.zip
Client: fix pagination component
Diffstat (limited to 'client/src/app')
-rw-r--r--client/src/app/videos/video-list/video-list.component.html4
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>