From c5b28f63367ac373bfa38d4b21791a0a5f1d78c1 Mon Sep 17 00:00:00 2001 From: Boo Date: Wed, 1 Feb 2023 15:04:30 +0100 Subject: [PATCH] Use displayName as label in channelFilters Fixes #5038 --- client/src/app/+my-library/my-videos/my-videos.component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 bcfc66099..46dd304ba 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 @@ -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 } })