diff options
author | Chocobozzz <me@florianbigard.com> | 2020-11-19 16:52:45 +0100 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2020-11-19 16:52:45 +0100 |
commit | 3fba4b6bce69247b1d37f923894d8f44818a891c (patch) | |
tree | 968aa2a65ace627ea3b73a1a60587926614ed96b /client/src/app/shared | |
parent | 369e77543b0e2cd24f2353dcf6a715fca350556c (diff) | |
download | PeerTube-3fba4b6bce69247b1d37f923894d8f44818a891c.tar.gz PeerTube-3fba4b6bce69247b1d37f923894d8f44818a891c.tar.zst PeerTube-3fba4b6bce69247b1d37f923894d8f44818a891c.zip |
Fix no history message
Diffstat (limited to 'client/src/app/shared')
-rw-r--r-- | client/src/app/shared/shared-video-miniature/videos-selection.component.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/client/src/app/shared/shared-video-miniature/videos-selection.component.html b/client/src/app/shared/shared-video-miniature/videos-selection.component.html index 44aa567b9..5f5593512 100644 --- a/client/src/app/shared/shared-video-miniature/videos-selection.component.html +++ b/client/src/app/shared/shared-video-miniature/videos-selection.component.html | |||
@@ -1,4 +1,4 @@ | |||
1 | <div class="no-results" i18n *ngIf="pagination.totalItems === 0">No results.</div> | 1 | <div class="no-results" i18n *ngIf="hasDoneFirstQuery && videos.length === 0">No results.</div> |
2 | 2 | ||
3 | <div myInfiniteScroller [autoInit]="true" (nearOfBottom)="onNearOfBottom()" [dataObservable]="onDataSubject.asObservable()" class="videos"> | 3 | <div myInfiniteScroller [autoInit]="true" (nearOfBottom)="onNearOfBottom()" [dataObservable]="onDataSubject.asObservable()" class="videos"> |
4 | <div class="video" *ngFor="let video of videos; let i = index; trackBy: videoById"> | 4 | <div class="video" *ngFor="let video of videos; let i = index; trackBy: videoById"> |