From: Chocobozzz Date: Tue, 27 Mar 2018 07:18:26 +0000 (+0200) Subject: 4 lines per page instead of 3 for videos list X-Git-Tag: v1.0.0-beta.2~22 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=75236b98782c337959853ad3d2e981a01c599cff;p=oweals%2Fpeertube.git 4 lines per page instead of 3 for videos list --- diff --git a/client/src/app/shared/video/abstract-video-list.ts b/client/src/app/shared/video/abstract-video-list.ts index c3543cfaa..c18ebcf54 100644 --- a/client/src/app/shared/video/abstract-video-list.ts +++ b/client/src/app/shared/video/abstract-video-list.ts @@ -13,7 +13,7 @@ import { SortField } from './sort-field.type' import { Video } from './video.model' export abstract class AbstractVideoList implements OnInit, OnDestroy { - private static LINES_PER_PAGE = 3 + private static LINES_PER_PAGE = 4 @ViewChild('videosElement') videosElement: ElementRef @ViewChild(InfiniteScrollerDirective) infiniteScroller: InfiniteScrollerDirective