Skip to content

Commit

Permalink
fix: bump up scene list default load size
Browse files Browse the repository at this point in the history
  • Loading branch information
tylercchase committed Feb 5, 2025
1 parent 94ce8b0 commit cf0e732
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ export class ScenesListComponent implements OnInit, OnDestroy, AfterContentInit

private subs = new SubSink();

private productPageSize = 250;
private productPageSize = 1000; // TODO: previously 250, breaks when adding project to queue with products not loaded in (temp workaround bumping up the default load)
private numberProductsInList$ = new BehaviorSubject(INFINITY);
public numberProductsInList: number;
private loadingDummyJobs = new Set<string>();
Expand Down

0 comments on commit cf0e732

Please sign in to comment.