aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/+accounts/account-video-channels
diff options
context:
space:
mode:
authorCaroline Chuong <caroline.chuong@octo.com>2020-06-13 00:53:56 +0200
committerGitHub <noreply@github.com>2020-06-13 00:53:56 +0200
commitc9e3565dc8d0e5ce0dcbdb4fe8deb7a257d9e2a0 (patch)
tree2646dbf2602648e84102121da72629e313e61297 /client/src/app/+accounts/account-video-channels
parent1a40132c67e50c94a7bd3f6b63c075f471b3d6cc (diff)
downloadPeerTube-c9e3565dc8d0e5ce0dcbdb4fe8deb7a257d9e2a0.tar.gz
PeerTube-c9e3565dc8d0e5ce0dcbdb4fe8deb7a257d9e2a0.tar.zst
PeerTube-c9e3565dc8d0e5ce0dcbdb4fe8deb7a257d9e2a0.zip
fix headings order or add missing ones (#2871)
Co-authored-by: Rigel Kent <sendmemail@rigelk.eu>
Diffstat (limited to 'client/src/app/+accounts/account-video-channels')
-rw-r--r--client/src/app/+accounts/account-video-channels/account-video-channels.component.html3
1 files changed, 2 insertions, 1 deletions
diff --git a/client/src/app/+accounts/account-video-channels/account-video-channels.component.html b/client/src/app/+accounts/account-video-channels/account-video-channels.component.html
index 8f1ff21a5..73bac5f1d 100644
--- a/client/src/app/+accounts/account-video-channels/account-video-channels.component.html
+++ b/client/src/app/+accounts/account-video-channels/account-video-channels.component.html
@@ -1,3 +1,4 @@
1<h1 class="sr-only" i18n>Video channels</h1>
1<div class="margin-content"> 2<div class="margin-content">
2 3
3 <div class="no-results" i18n *ngIf="channelPagination.totalItems === 0">This account does not have channels.</div> 4 <div class="no-results" i18n *ngIf="channelPagination.totalItems === 0">This account does not have channels.</div>
@@ -8,7 +9,7 @@
8 <a [routerLink]="getVideoChannelLink(videoChannel)" i18n-title title="See this video channel"> 9 <a [routerLink]="getVideoChannelLink(videoChannel)" i18n-title title="See this video channel">
9 <img [src]="videoChannel.avatarUrl" alt="Avatar" /> 10 <img [src]="videoChannel.avatarUrl" alt="Avatar" />
10 11
11 <div>{{ videoChannel.displayName }}</div> 12 <h2 class="section-title">{{ videoChannel.displayName }}</h2>
12 <div class="followers" i18n>{videoChannel.followersCount, plural, =1 {1 subscriber} other {{{ videoChannel.followersCount }} subscribers}}</div> 13 <div class="followers" i18n>{videoChannel.followersCount, plural, =1 {1 subscriber} other {{{ videoChannel.followersCount }} subscribers}}</div>
13 </a> 14 </a>
14 15