pull/3085/head
Chocobozzz 2020-08-14 15:04:58 +02:00
parent da188b9f9e
commit 93e903ac16
No known key found for this signature in database
GPG Key ID: 583A612D890159BE
2 changed files with 6 additions and 2 deletions

View File

@ -37,7 +37,7 @@ export class VideoCommentAddComponent extends FormReactive implements OnChanges,
private notifier: Notifier,
private videoCommentService: VideoCommentService,
private modalService: NgbModal,
private router: Router,
private router: Router
) {
super()
}

View File

@ -160,7 +160,11 @@ export class VideoCommentsComponent implements OnInit, OnChanges, OnDestroy {
this.timestampClicked.emit(timestamp)
}
async onWantedToDelete(commentToDelete: VideoComment, title = $localize`Delete`, message = $localize`Do you really want to delete this comment?`): Promise<boolean> {
async onWantedToDelete (
commentToDelete: VideoComment,
title = $localize`Delete`,
message = $localize`Do you really want to delete this comment?`
): Promise<boolean> {
if (commentToDelete.isLocal || this.video.isLocal) {
message += $localize` The deletion will be sent to remote instances so they can reflect the change.`
} else {