From 3315fb1ff3ccd7a53c701d8388dd96d97b557505 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nikola=20Forr=C3=B3?= Date: Mon, 3 Sep 2018 12:34:23 +0200 Subject: [PATCH] Show only 10 videos by default --- apps/twitch-logs/src/app/videos/videos.component.html | 2 +- apps/twitch-logs/src/app/videos/videos.component.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/twitch-logs/src/app/videos/videos.component.html b/apps/twitch-logs/src/app/videos/videos.component.html index a93116a..79dc2d5 100644 --- a/apps/twitch-logs/src/app/videos/videos.component.html +++ b/apps/twitch-logs/src/app/videos/videos.component.html @@ -73,7 +73,7 @@ - diff --git a/apps/twitch-logs/src/app/videos/videos.component.ts b/apps/twitch-logs/src/app/videos/videos.component.ts index f89320a..a0e694f 100644 --- a/apps/twitch-logs/src/app/videos/videos.component.ts +++ b/apps/twitch-logs/src/app/videos/videos.component.ts @@ -53,7 +53,7 @@ export class VideosComponent implements OnInit, AfterViewInit { ngOnInit() { this.dataSource = new VideosDataSource(this.commentsService); - this.dataSource.loadVideos('', 'recorded_at', 'desc', 0, 20); + this.dataSource.loadVideos('', 'recorded_at', 'desc', 0, 10); } ngAfterViewInit() {