diff options
author | mike stedman <barbeque@users.noreply.github.com> | 2018-10-17 20:22:06 -0600 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2018-10-18 14:59:22 +0200 |
commit | 198d764ff08047ec469b21b1e8c54d8d29ef2b8d (patch) | |
tree | b5de56c1f1882bdab7d2c3b71ea12886acab9957 /client/src/app/+admin | |
parent | 5aa4a3dd05486a3c4910ffea888e5fae190bb53d (diff) | |
download | PeerTube-198d764ff08047ec469b21b1e8c54d8d29ef2b8d.tar.gz PeerTube-198d764ff08047ec469b21b1e8c54d8d29ef2b8d.tar.zst PeerTube-198d764ff08047ec469b21b1e8c54d8d29ef2b8d.zip |
Make abuse-delete confirmation box clearer
Diffstat (limited to 'client/src/app/+admin')
-rw-r--r-- | client/src/app/+admin/moderation/video-abuse-list/video-abuse-list.component.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/client/src/app/+admin/moderation/video-abuse-list/video-abuse-list.component.ts b/client/src/app/+admin/moderation/video-abuse-list/video-abuse-list.component.ts index 188cbd7ac..7a219c846 100644 --- a/client/src/app/+admin/moderation/video-abuse-list/video-abuse-list.component.ts +++ b/client/src/app/+admin/moderation/video-abuse-list/video-abuse-list.component.ts | |||
@@ -85,7 +85,7 @@ export class VideoAbuseListComponent extends RestTable implements OnInit { | |||
85 | } | 85 | } |
86 | 86 | ||
87 | async removeVideoAbuse (videoAbuse: VideoAbuse) { | 87 | async removeVideoAbuse (videoAbuse: VideoAbuse) { |
88 | const res = await this.confirmService.confirm(this.i18n('Do you really want to delete this abuse?'), this.i18n('Delete')) | 88 | const res = await this.confirmService.confirm(this.i18n('Do you really want to delete this abuse report?'), this.i18n('Delete')) |
89 | if (res === false) return | 89 | if (res === false) return |
90 | 90 | ||
91 | this.videoAbuseService.removeVideoAbuse(videoAbuse).subscribe( | 91 | this.videoAbuseService.removeVideoAbuse(videoAbuse).subscribe( |