diff options
author | Chocobozzz <me@florianbigard.com> | 2021-11-03 14:23:55 +0100 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2021-11-03 14:23:55 +0100 |
commit | dd6d2a7ce50e7ff02e00995ccc87f8f929ad9709 (patch) | |
tree | b71ed391c2d8f99bff40dd3461010876de7bb23c /client/src/app/+admin/moderation | |
parent | d324756edb836672f12284cd18e642a658b273d8 (diff) | |
download | PeerTube-dd6d2a7ce50e7ff02e00995ccc87f8f929ad9709.tar.gz PeerTube-dd6d2a7ce50e7ff02e00995ccc87f8f929ad9709.tar.zst PeerTube-dd6d2a7ce50e7ff02e00995ccc87f8f929ad9709.zip |
Improve advanced input filter
Diffstat (limited to 'client/src/app/+admin/moderation')
-rw-r--r-- | client/src/app/+admin/moderation/video-block-list/video-block-list.component.ts | 4 | ||||
-rw-r--r-- | client/src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts | 4 |
2 files changed, 4 insertions, 4 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 1fe8d0f9d..dca746f4e 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 | |||
@@ -30,11 +30,11 @@ export class VideoBlockListComponent extends RestTable implements OnInit { | |||
30 | title: $localize`Advanced filters`, | 30 | title: $localize`Advanced filters`, |
31 | children: [ | 31 | children: [ |
32 | { | 32 | { |
33 | queryParams: { search: 'type:auto' }, | 33 | value: 'type:auto', |
34 | label: $localize`Automatic blocks` | 34 | label: $localize`Automatic blocks` |
35 | }, | 35 | }, |
36 | { | 36 | { |
37 | queryParams: { search: 'type:manual' }, | 37 | value: 'type:manual', |
38 | label: $localize`Manual blocks` | 38 | label: $localize`Manual blocks` |
39 | } | 39 | } |
40 | ] | 40 | ] |
diff --git a/client/src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts b/client/src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts index a60b228af..25fe65133 100644 --- a/client/src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts +++ b/client/src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts | |||
@@ -47,11 +47,11 @@ export class VideoCommentListComponent extends RestTable implements OnInit { | |||
47 | title: $localize`Advanced filters`, | 47 | title: $localize`Advanced filters`, |
48 | children: [ | 48 | children: [ |
49 | { | 49 | { |
50 | queryParams: { search: 'local:true' }, | 50 | value: 'local:true', |
51 | label: $localize`Local comments` | 51 | label: $localize`Local comments` |
52 | }, | 52 | }, |
53 | { | 53 | { |
54 | queryParams: { search: 'local:false' }, | 54 | value: 'local:false', |
55 | label: $localize`Remote comments` | 55 | label: $localize`Remote comments` |
56 | } | 56 | } |
57 | ] | 57 | ] |