aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/+accounts/account-video-channels/account-video-channels.component.html
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2019-06-11 11:28:26 +0200
committerChocobozzz <me@florianbigard.com>2019-06-11 14:31:11 +0200
commitfff77ba23191f9bca959d5989a1f1df331dbac0b (patch)
tree9ba0525cd07da3a5e6146876ed13343aa9644c68 /client/src/app/+accounts/account-video-channels/account-video-channels.component.html
parentfcf4569f2da9ebcdc43caf8276f82098c89e5677 (diff)
downloadPeerTube-fff77ba23191f9bca959d5989a1f1df331dbac0b.tar.gz
PeerTube-fff77ba23191f9bca959d5989a1f1df331dbac0b.tar.zst
PeerTube-fff77ba23191f9bca959d5989a1f1df331dbac0b.zip
Fix account channel overflow
Diffstat (limited to 'client/src/app/+accounts/account-video-channels/account-video-channels.component.html')
-rw-r--r--client/src/app/+accounts/account-video-channels/account-video-channels.component.html6
1 files changed, 5 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 43dbbebb3..e9c8179b7 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
@@ -15,7 +15,11 @@
15 <my-subscribe-button [videoChannel]="videoChannel"></my-subscribe-button> 15 <my-subscribe-button [videoChannel]="videoChannel"></my-subscribe-button>
16 </div> 16 </div>
17 17
18 <my-video-miniature *ngFor="let video of getVideosOf(videoChannel)" [video]="video" [user]="user" [displayVideoActions]="false"></my-video-miniature> 18 <div *ngIf="getVideosOf(videoChannel)" class="videos">
19 <div class="no-results" i18n *ngIf="getVideosOf(videoChannel).length === 0">This channel does not have videos.</div>
20
21 <my-video-miniature *ngFor="let video of getVideosOf(videoChannel)" [video]="video" [user]="user" [displayVideoActions]="false"></my-video-miniature>
22 </div>
19 </div> 23 </div>
20 </div> 24 </div>
21</div> 25</div>