aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/+my-library/+my-video-channels/my-video-channels.component.html
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2023-03-01 13:56:15 +0100
committerChocobozzz <me@florianbigard.com>2023-03-01 13:56:15 +0100
commit439f5dfc7fbbae885961085787ca185e911a83ea (patch)
tree49dc2395708969c3203e4a23d912d92455cae136 /client/src/app/+my-library/+my-video-channels/my-video-channels.component.html
parent626b76dcf5df3d27628cd90053630cbbbbcccff0 (diff)
downloadPeerTube-439f5dfc7fbbae885961085787ca185e911a83ea.tar.gz
PeerTube-439f5dfc7fbbae885961085787ca185e911a83ea.tar.zst
PeerTube-439f5dfc7fbbae885961085787ca185e911a83ea.zip
List my channels using pagination
Diffstat (limited to 'client/src/app/+my-library/+my-video-channels/my-video-channels.component.html')
-rw-r--r--client/src/app/+my-library/+my-video-channels/my-video-channels.component.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/client/src/app/+my-library/+my-video-channels/my-video-channels.component.html b/client/src/app/+my-library/+my-video-channels/my-video-channels.component.html
index d97c35eff..5bef4a6ed 100644
--- a/client/src/app/+my-library/+my-video-channels/my-video-channels.component.html
+++ b/client/src/app/+my-library/+my-video-channels/my-video-channels.component.html
@@ -26,7 +26,7 @@
26 26
27<div class="no-results" i18n *ngIf="totalItems === 0">No channel found.</div> 27<div class="no-results" i18n *ngIf="totalItems === 0">No channel found.</div>
28 28
29<div class="video-channels"> 29<div class="video-channels" myInfiniteScroller (nearOfBottom)="onNearOfBottom()" [dataObservable]="onChannelDataSubject.asObservable()">
30 <div *ngFor="let videoChannel of videoChannels; let i = index" class="video-channel"> 30 <div *ngFor="let videoChannel of videoChannels; let i = index" class="video-channel">
31 <my-actor-avatar [actor]="videoChannel" actorType="channel" [internalHref]="[ '/c', videoChannel.nameWithHost ]" size="80"></my-actor-avatar> 31 <my-actor-avatar [actor]="videoChannel" actorType="channel" [internalHref]="[ '/c', videoChannel.nameWithHost ]" size="80"></my-actor-avatar>
32 32