aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/+my-library/my-video-imports
diff options
context:
space:
mode:
Diffstat (limited to 'client/src/app/+my-library/my-video-imports')
-rw-r--r--client/src/app/+my-library/my-video-imports/my-video-imports.component.ts8
1 files changed, 4 insertions, 4 deletions
diff --git a/client/src/app/+my-library/my-video-imports/my-video-imports.component.ts b/client/src/app/+my-library/my-video-imports/my-video-imports.component.ts
index 68254526a..914785bf7 100644
--- a/client/src/app/+my-library/my-video-imports/my-video-imports.component.ts
+++ b/client/src/app/+my-library/my-video-imports/my-video-imports.component.ts
@@ -64,13 +64,13 @@ export class MyVideoImportsComponent extends RestTable implements OnInit {
64 64
65 protected reloadData () { 65 protected reloadData () {
66 this.videoImportService.getMyVideoImports(this.pagination, this.sort) 66 this.videoImportService.getMyVideoImports(this.pagination, this.sort)
67 .subscribe( 67 .subscribe({
68 resultList => { 68 next: resultList => {
69 this.videoImports = resultList.data 69 this.videoImports = resultList.data
70 this.totalRecords = resultList.total 70 this.totalRecords = resultList.total
71 }, 71 },
72 72
73 err => this.notifier.error(err.message) 73 error: err => this.notifier.error(err.message)
74 ) 74 })
75 } 75 }
76} 76}