aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app
diff options
context:
space:
mode:
authorBoo <Booteille@users.noreply.github.com>2023-02-01 15:04:30 +0100
committerChocobozzz <chocobozzz@cpy.re>2023-02-13 14:51:26 +0100
commitc5b28f63367ac373bfa38d4b21791a0a5f1d78c1 (patch)
tree94ce7909b729eb283f513c7ec57812434f979a13 /client/src/app
parentcb38c9b9eaaf20abdb739553d7a3f1e1add8c604 (diff)
downloadPeerTube-c5b28f63367ac373bfa38d4b21791a0a5f1d78c1.tar.gz
PeerTube-c5b28f63367ac373bfa38d4b21791a0a5f1d78c1.tar.zst
PeerTube-c5b28f63367ac373bfa38d4b21791a0a5f1d78c1.zip
Use displayName as label in channelFilters
Fixes #5038
Diffstat (limited to 'client/src/app')
-rw-r--r--client/src/app/+my-library/my-videos/my-videos.component.ts2
1 files changed, 1 insertions, 1 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 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 {
108 const channelFilters = this.userChannels.map(c => { 108 const channelFilters = this.userChannels.map(c => {
109 return { 109 return {
110 value: 'channel:' + c.name, 110 value: 'channel:' + c.name,
111 label: c.name 111 label: c.displayName
112 } 112 }
113 }) 113 })
114 114