diff options
author | Chocobozzz <me@florianbigard.com> | 2020-06-12 08:12:13 +0200 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2020-06-12 08:27:59 +0200 |
commit | 8b381422b88a02a971f5e50422b5b4b79b1101e5 (patch) | |
tree | ad713ea2d7e165b3c0d75056c459a1baad458282 /client | |
parent | adcf921271654b25f03949d2271d7d7c362985af (diff) | |
download | PeerTube-8b381422b88a02a971f5e50422b5b4b79b1101e5.tar.gz PeerTube-8b381422b88a02a971f5e50422b5b4b79b1101e5.tar.zst PeerTube-8b381422b88a02a971f5e50422b5b4b79b1101e5.zip |
Fix lint
Diffstat (limited to 'client')
-rw-r--r-- | client/src/app/+admin/moderation/video-block-list/video-block-list.component.ts | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/client/src/app/+admin/moderation/video-block-list/video-block-list.component.ts b/client/src/app/+admin/moderation/video-block-list/video-block-list.component.ts index 7b3691332..c0ac32242 100644 --- a/client/src/app/+admin/moderation/video-block-list/video-block-list.component.ts +++ b/client/src/app/+admin/moderation/video-block-list/video-block-list.component.ts | |||
@@ -1,4 +1,4 @@ | |||
1 | import { Component, OnInit } from '@angular/core' | 1 | import { Component, OnInit, AfterViewInit } from '@angular/core' |
2 | import { SortMeta } from 'primeng/api' | 2 | import { SortMeta } from 'primeng/api' |
3 | import { Notifier, ServerService } from '@app/core' | 3 | import { Notifier, ServerService } from '@app/core' |
4 | import { ConfirmService } from '../../../core' | 4 | import { ConfirmService } from '../../../core' |
@@ -17,7 +17,7 @@ import { VideoService } from '@app/shared/video/video.service' | |||
17 | templateUrl: './video-block-list.component.html', | 17 | templateUrl: './video-block-list.component.html', |
18 | styleUrls: [ '../moderation.component.scss', './video-block-list.component.scss' ] | 18 | styleUrls: [ '../moderation.component.scss', './video-block-list.component.scss' ] |
19 | }) | 19 | }) |
20 | export class VideoBlockListComponent extends RestTable implements OnInit { | 20 | export class VideoBlockListComponent extends RestTable implements OnInit, AfterViewInit { |
21 | blocklist: (VideoBlacklist & { reasonHtml?: string })[] = [] | 21 | blocklist: (VideoBlacklist & { reasonHtml?: string })[] = [] |
22 | totalRecords = 0 | 22 | totalRecords = 0 |
23 | sort: SortMeta = { field: 'createdAt', order: -1 } | 23 | sort: SortMeta = { field: 'createdAt', order: -1 } |
@@ -55,7 +55,7 @@ export class VideoBlockListComponent extends RestTable implements OnInit { | |||
55 | this.notifier.success(this.i18n('Video {{name}} switched to manual block.', { name: videoBlock.video.name })) | 55 | this.notifier.success(this.i18n('Video {{name}} switched to manual block.', { name: videoBlock.video.name })) |
56 | this.loadData() | 56 | this.loadData() |
57 | }, | 57 | }, |
58 | 58 | ||
59 | err => this.notifier.error(err.message) | 59 | err => this.notifier.error(err.message) |
60 | ) | 60 | ) |
61 | } | 61 | } |
@@ -64,7 +64,7 @@ export class VideoBlockListComponent extends RestTable implements OnInit { | |||
64 | [ | 64 | [ |
65 | { | 65 | { |
66 | label: this.i18n('Actions for the video'), | 66 | label: this.i18n('Actions for the video'), |
67 | isHeader: true, | 67 | isHeader: true |
68 | }, | 68 | }, |
69 | { | 69 | { |
70 | label: this.i18n('Unblock video'), | 70 | label: this.i18n('Unblock video'), |
@@ -177,7 +177,7 @@ export class VideoBlockListComponent extends RestTable implements OnInit { | |||
177 | this.videoBlocklistService.listBlocks({ | 177 | this.videoBlocklistService.listBlocks({ |
178 | pagination: this.pagination, | 178 | pagination: this.pagination, |
179 | sort: this.sort, | 179 | sort: this.sort, |
180 | search: this.search, | 180 | search: this.search |
181 | }) | 181 | }) |
182 | .subscribe( | 182 | .subscribe( |
183 | async resultList => { | 183 | async resultList => { |