aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/+accounts/account-video-channels/account-video-channels.component.ts
diff options
context:
space:
mode:
Diffstat (limited to 'client/src/app/+accounts/account-video-channels/account-video-channels.component.ts')
-rw-r--r--client/src/app/+accounts/account-video-channels/account-video-channels.component.ts6
1 files changed, 4 insertions, 2 deletions
diff --git a/client/src/app/+accounts/account-video-channels/account-video-channels.component.ts b/client/src/app/+accounts/account-video-channels/account-video-channels.component.ts
index 29d2991fd..5572064c1 100644
--- a/client/src/app/+accounts/account-video-channels/account-video-channels.component.ts
+++ b/client/src/app/+accounts/account-video-channels/account-video-channels.component.ts
@@ -25,12 +25,14 @@ export class AccountVideoChannelsComponent implements OnInit, OnDestroy {
25 25
26 channelPagination: ComponentPagination = { 26 channelPagination: ComponentPagination = {
27 currentPage: 1, 27 currentPage: 1,
28 itemsPerPage: 2 28 itemsPerPage: 2,
29 totalItems: null
29 } 30 }
30 31
31 videosPagination: ComponentPagination = { 32 videosPagination: ComponentPagination = {
32 currentPage: 1, 33 currentPage: 1,
33 itemsPerPage: 12 34 itemsPerPage: 12,
35 totalItems: null
34 } 36 }
35 videosSort: VideoSortField = '-publishedAt' 37 videosSort: VideoSortField = '-publishedAt'
36 38