From f43c27ed968c8bf10d1045fc9a3e9f013b47d5c2 Mon Sep 17 00:00:00 2001 From: Jamie Date: Mon, 20 Nov 2017 13:39:39 +0000 Subject: [PATCH] Load the first 100 requests --- src/Ombi/ClientApp/app/requests/movierequests.component.ts | 4 ++-- src/Ombi/ClientApp/app/requests/tvrequests.component.ts | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Ombi/ClientApp/app/requests/movierequests.component.ts b/src/Ombi/ClientApp/app/requests/movierequests.component.ts index bd65660b7..3551a3b4a 100644 --- a/src/Ombi/ClientApp/app/requests/movierequests.component.ts +++ b/src/Ombi/ClientApp/app/requests/movierequests.component.ts @@ -51,8 +51,8 @@ export class MovieRequestsComponent implements OnInit { } public ngOnInit() { - this.amountToLoad = 5; - this.currentlyLoaded = 5; + this.amountToLoad = 100; + this.currentlyLoaded = 100; this.loadInit(); this.isAdmin = this.auth.hasRole("admin") || this.auth.hasRole("poweruser"); } diff --git a/src/Ombi/ClientApp/app/requests/tvrequests.component.ts b/src/Ombi/ClientApp/app/requests/tvrequests.component.ts index 6bbec56c3..27de1623f 100644 --- a/src/Ombi/ClientApp/app/requests/tvrequests.component.ts +++ b/src/Ombi/ClientApp/app/requests/tvrequests.component.ts @@ -80,7 +80,7 @@ export class TvRequestsComponent implements OnInit { public ngOnInit() { this.amountToLoad = 1000; - this.currentlyLoaded = 5; + this.currentlyLoaded = 1000; this.tvRequests = []; this.loadInit(); this.isAdmin = this.auth.hasRole("admin") || this.auth.hasRole("poweruser");