mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-07-16 02:02:55 -07:00
Load the first 100 requests
This commit is contained in:
parent
ee13720a8b
commit
f43c27ed96
2 changed files with 3 additions and 3 deletions
|
@ -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");
|
||||
}
|
||||
|
|
|
@ -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");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue