]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blobdiff - client/src/app/+admin/moderation/video-block-list/video-block-list.component.ts
remove extra action for when the video block type is set to manual
[github/Chocobozzz/PeerTube.git] / client / src / app / +admin / moderation / video-block-list / video-block-list.component.ts
index c03f9248ed0fcd3206134771cf9596251ed84ab4..5a51325277d22b8e657ca2035ba0a44c97fa0b61 100644 (file)
@@ -39,7 +39,8 @@ export class VideoBlockListComponent extends RestTable implements OnInit, AfterV
       [
         {
           label: this.i18n('Internal actions'),
-          isHeader: true
+          isHeader: true,
+          isDisplayed: videoBlock => videoBlock.type === VideoBlacklistType.AUTO_BEFORE_PUBLISHED
         },
         {
           label: this.i18n('Switch video block to manual'),
@@ -54,7 +55,8 @@ export class VideoBlockListComponent extends RestTable implements OnInit, AfterV
 
               err => this.notifier.error(err.message)
             )
-          }
+          },
+          isDisplayed: videoBlock => videoBlock.type === VideoBlacklistType.AUTO_BEFORE_PUBLISHED
         }
       ],
       [
@@ -63,12 +65,12 @@ export class VideoBlockListComponent extends RestTable implements OnInit, AfterV
           isHeader: true
         },
         {
-          label: this.i18n('Unblock video'),
+          label: this.i18n('Unblock'),
           handler: videoBlock => this.unblockVideo(videoBlock)
         },
 
         {
-          label: this.i18n('Delete video'),
+          label: this.i18n('Delete'),
           handler: async videoBlock => {
             const res = await this.confirmService.confirm(
               this.i18n('Do you really want to delete this video?'),