aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorRigel Kent <sendmemail@rigelk.eu>2021-04-02 15:01:54 +0200
committerRigel Kent <sendmemail@rigelk.eu>2021-04-02 15:01:54 +0200
commit0a25749f14a083d2c388b6229cbdbba695d0387e (patch)
treec86a7baf9128198f71c60147a34132cbb20a9ca8
parent0a6785d115b79eaafbd7944834fc8b3a7da089fd (diff)
downloadPeerTube-0a25749f14a083d2c388b6229cbdbba695d0387e.tar.gz
PeerTube-0a25749f14a083d2c388b6229cbdbba695d0387e.tar.zst
PeerTube-0a25749f14a083d2c388b6229cbdbba695d0387e.zip
simplify channels/playlists name in account/channel views
-rw-r--r--client/src/app/+accounts/accounts.component.ts2
-rw-r--r--client/src/app/+video-channels/video-channels.component.ts2
2 files changed, 2 insertions, 2 deletions
diff --git a/client/src/app/+accounts/accounts.component.ts b/client/src/app/+accounts/accounts.component.ts
index e80314130..fbd7380a9 100644
--- a/client/src/app/+accounts/accounts.component.ts
+++ b/client/src/app/+accounts/accounts.component.ts
@@ -79,7 +79,7 @@ export class AccountsComponent implements OnInit, OnDestroy {
79 ) 79 )
80 80
81 this.links = [ 81 this.links = [
82 { label: $localize`VIDEO CHANNELS`, routerLink: 'video-channels' }, 82 { label: $localize`CHANNELS`, routerLink: 'video-channels' },
83 { label: $localize`VIDEOS`, routerLink: 'videos' } 83 { label: $localize`VIDEOS`, routerLink: 'videos' }
84 ] 84 ]
85 } 85 }
diff --git a/client/src/app/+video-channels/video-channels.component.ts b/client/src/app/+video-channels/video-channels.component.ts
index 2739047ed..41fdb5e79 100644
--- a/client/src/app/+video-channels/video-channels.component.ts
+++ b/client/src/app/+video-channels/video-channels.component.ts
@@ -74,7 +74,7 @@ export class VideoChannelsComponent implements OnInit, OnDestroy {
74 74
75 this.links = [ 75 this.links = [
76 { label: $localize`VIDEOS`, routerLink: 'videos' }, 76 { label: $localize`VIDEOS`, routerLink: 'videos' },
77 { label: $localize`VIDEO PLAYLISTS`, routerLink: 'video-playlists' } 77 { label: $localize`PLAYLISTS`, routerLink: 'video-playlists' }
78 ] 78 ]
79 } 79 }
80 80