1
0
Fork 0

Use displayName as label in channelFilters

Fixes #5038
This commit is contained in:
Boo 2023-02-01 15:04:30 +01:00 committed by Chocobozzz
parent cb38c9b9ea
commit c5b28f6336
1 changed files with 1 additions and 1 deletions

View File

@ -108,7 +108,7 @@ export class MyVideosComponent implements OnInit, DisableForReuseHook {
const channelFilters = this.userChannels.map(c => {
return {
value: 'channel:' + c.name,
label: c.name
label: c.displayName
}
})