aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/+my-library/my-videos
diff options
context:
space:
mode:
Diffstat (limited to 'client/src/app/+my-library/my-videos')
-rw-r--r--client/src/app/+my-library/my-videos/my-videos.component.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/client/src/app/+my-library/my-videos/my-videos.component.ts b/client/src/app/+my-library/my-videos/my-videos.component.ts
index a117d0915..261e87f99 100644
--- a/client/src/app/+my-library/my-videos/my-videos.component.ts
+++ b/client/src/app/+my-library/my-videos/my-videos.component.ts
@@ -82,7 +82,7 @@ export class MyVideosComponent implements OnInit, DisableForReuseHook {
82 82
83 const channelFilters = this.userChannels.map(c => { 83 const channelFilters = this.userChannels.map(c => {
84 return { 84 return {
85 queryParams: { search: 'channel:' + c.name }, 85 value: 'channel:' + c.name,
86 label: c.name 86 label: c.name
87 } 87 }
88 }) 88 })
@@ -92,7 +92,7 @@ export class MyVideosComponent implements OnInit, DisableForReuseHook {
92 title: $localize`Advanced filters`, 92 title: $localize`Advanced filters`,
93 children: [ 93 children: [
94 { 94 {
95 queryParams: { search: 'isLive:true' }, 95 value: 'isLive:true',
96 label: $localize`Only live videos` 96 label: $localize`Only live videos`
97 } 97 }
98 ] 98 ]