Add icons to dropdown actions (report, remove and remove & re-draft)

pull/3085/head
kimsible 2020-08-07 18:12:44 +02:00 committed by Chocobozzz
parent 45ae994a44
commit c311596094
1 changed files with 6 additions and 3 deletions

View File

@ -154,21 +154,24 @@ export class VideoCommentComponent implements OnInit, OnChanges {
if (this.isReportableByUser()) {
this.prependModerationActions.push({
label: $localize`Report comment`,
label: $localize`Report`,
iconName: 'flag',
handler: () => this.showReportModal()
})
}
if (this.isRemovableByUser()) {
this.prependModerationActions.push({
label: $localize`Remove comment`,
label: $localize`Remove`,
iconName: 'delete',
handler: () => this.onWantToDelete()
})
}
if (this.isRedraftableByUser()) {
this.prependModerationActions.push({
label: $localize`Remove & re-draft comment`,
label: $localize`Remove & re-draft`,
iconName: 'edit',
handler: () => this.onWantToRedraft()
})
}