diff options
author | Chocobozzz <me@florianbigard.com> | 2020-01-08 14:40:08 +0100 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2020-01-08 14:40:08 +0100 |
commit | 440d39c52d4efb878b6a2e21584d6b8f52072f27 (patch) | |
tree | 19ffd2dd545e125daf89c230e33d15f7827d10f7 /client/src/app/+accounts | |
parent | fe98765624cdd6695739bda719fcb726b71c2b2a (diff) | |
download | PeerTube-440d39c52d4efb878b6a2e21584d6b8f52072f27.tar.gz PeerTube-440d39c52d4efb878b6a2e21584d6b8f52072f27.tar.zst PeerTube-440d39c52d4efb878b6a2e21584d6b8f52072f27.zip |
Skip videos count on client if we don't use it
Diffstat (limited to 'client/src/app/+accounts')
-rw-r--r-- | client/src/app/+accounts/account-video-channels/account-video-channels.component.ts | 6 |
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 | ||