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/core | |
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/core')
-rw-r--r-- | client/src/app/core/rest/component-pagination.model.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/client/src/app/core/rest/component-pagination.model.ts b/client/src/app/core/rest/component-pagination.model.ts index bcb73ed0f..59d70c1e8 100644 --- a/client/src/app/core/rest/component-pagination.model.ts +++ b/client/src/app/core/rest/component-pagination.model.ts | |||
@@ -4,7 +4,7 @@ export interface ComponentPagination { | |||
4 | totalItems: number | 4 | totalItems: number |
5 | } | 5 | } |
6 | 6 | ||
7 | export type ComponentPaginationLight = Omit<ComponentPagination, 'totalItems'> | 7 | export type ComponentPaginationLight = Omit<ComponentPagination, 'totalItems'> & { totalItems?: number } |
8 | 8 | ||
9 | export function hasMoreItems (componentPagination: ComponentPagination) { | 9 | export function hasMoreItems (componentPagination: ComponentPagination) { |
10 | // No results | 10 | // No results |