aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/+video-channels/video-channels.component.ts
diff options
context:
space:
mode:
authorRigel Kent <sendmemail@rigelk.eu>2020-02-21 16:50:12 +0100
committerRigel Kent <sendmemail@rigelk.eu>2020-02-21 16:51:34 +0100
commit14571f1995e3a1868a3280b7aad5005cff051c7d (patch)
tree00ddaece6a74c864c71686b57cc24306c66e4539 /client/src/app/+video-channels/video-channels.component.ts
parent4c1def5fd8e9f483238eb38e221f555e2e6bbf07 (diff)
downloadPeerTube-14571f1995e3a1868a3280b7aad5005cff051c7d.tar.gz
PeerTube-14571f1995e3a1868a3280b7aad5005cff051c7d.tar.zst
PeerTube-14571f1995e3a1868a3280b7aad5005cff051c7d.zip
Replace uppercase text-transform by capitalized text source
fixes #2085
Diffstat (limited to 'client/src/app/+video-channels/video-channels.component.ts')
-rw-r--r--client/src/app/+video-channels/video-channels.component.ts6
1 files changed, 3 insertions, 3 deletions
diff --git a/client/src/app/+video-channels/video-channels.component.ts b/client/src/app/+video-channels/video-channels.component.ts
index 0889ca854..00b9938d9 100644
--- a/client/src/app/+video-channels/video-channels.component.ts
+++ b/client/src/app/+video-channels/video-channels.component.ts
@@ -66,9 +66,9 @@ export class VideoChannelsComponent implements OnInit, OnDestroy {
66 if (this.isUserLoggedIn()) this.hotkeysService.add(this.hotkeys) 66 if (this.isUserLoggedIn()) this.hotkeysService.add(this.hotkeys)
67 67
68 this.links = [ 68 this.links = [
69 { label: this.i18n('Videos'), routerLink: 'videos' }, 69 { label: this.i18n('VIDEOS'), routerLink: 'videos' },
70 { label: this.i18n('Video playlists'), routerLink: 'video-playlists' }, 70 { label: this.i18n('VIDEO PLAYLISTS'), routerLink: 'video-playlists' },
71 { label: this.i18n('About'), routerLink: 'about' } 71 { label: this.i18n('ABOUT'), routerLink: 'about' }
72 ] 72 ]
73 } 73 }
74 74