Fix no history message

pull/3334/head
Chocobozzz 2020-11-19 16:52:45 +01:00
parent 369e77543b
commit 3fba4b6bce
No known key found for this signature in database
GPG Key ID: 583A612D890159BE
3 changed files with 3 additions and 3 deletions

View File

@ -16,7 +16,7 @@
</div>
<div class="no-history" i18n *ngIf="pagination.totalItems === 0">You don't have any video history yet.</div>
<div class="no-history" i18n *ngIf="hasDoneFirstQuery && videos.length === 0">You don't have any video history yet.</div>
<div myInfiniteScroller (nearOfBottom)="onNearOfBottom()" [autoInit]="true" [dataObservable]="onDataSubject.asObservable()" class="videos">
<div class="video" *ngFor="let video of videos">

View File

@ -4,7 +4,7 @@ export interface ComponentPagination {
totalItems: number
}
export type ComponentPaginationLight = Omit<ComponentPagination, 'totalItems'>
export type ComponentPaginationLight = Omit<ComponentPagination, 'totalItems'> & { totalItems?: number }
export function hasMoreItems (componentPagination: ComponentPagination) {
// No results

View File

@ -1,4 +1,4 @@
<div class="no-results" i18n *ngIf="pagination.totalItems === 0">No results.</div>
<div class="no-results" i18n *ngIf="hasDoneFirstQuery && videos.length === 0">No results.</div>
<div myInfiniteScroller [autoInit]="true" (nearOfBottom)="onNearOfBottom()" [dataObservable]="onDataSubject.asObservable()" class="videos">
<div class="video" *ngFor="let video of videos; let i = index; trackBy: videoById">