aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/+my-account/my-account-video-playlists/my-account-video-playlist-elements.component.ts
diff options
context:
space:
mode:
Diffstat (limited to 'client/src/app/+my-account/my-account-video-playlists/my-account-video-playlist-elements.component.ts')
-rw-r--r--client/src/app/+my-account/my-account-video-playlists/my-account-video-playlist-elements.component.ts6
1 files changed, 5 insertions, 1 deletions
diff --git a/client/src/app/+my-account/my-account-video-playlists/my-account-video-playlist-elements.component.ts b/client/src/app/+my-account/my-account-video-playlists/my-account-video-playlist-elements.component.ts
index dcf470be3..25d51d2cb 100644
--- a/client/src/app/+my-account/my-account-video-playlists/my-account-video-playlist-elements.component.ts
+++ b/client/src/app/+my-account/my-account-video-playlists/my-account-video-playlist-elements.component.ts
@@ -24,7 +24,7 @@ export class MyAccountVideoPlaylistElementsComponent implements OnInit, OnDestro
24 24
25 pagination: ComponentPagination = { 25 pagination: ComponentPagination = {
26 currentPage: 1, 26 currentPage: 1,
27 itemsPerPage: 10, 27 itemsPerPage: 30,
28 totalItems: null 28 totalItems: null
29 } 29 }
30 30
@@ -123,6 +123,10 @@ export class MyAccountVideoPlaylistElementsComponent implements OnInit, OnDestro
123 this.loadElements() 123 this.loadElements()
124 } 124 }
125 125
126 trackByFn (index: number, elem: Video) {
127 return elem.id
128 }
129
126 private loadElements () { 130 private loadElements () {
127 this.videoService.getPlaylistVideos(this.videoPlaylistId, this.pagination) 131 this.videoService.getPlaylistVideos(this.videoPlaylistId, this.pagination)
128 .subscribe(({ totalVideos, videos }) => { 132 .subscribe(({ totalVideos, videos }) => {