Skip to content

Commit

Permalink
Merge pull request #288 from severinbeauvais/master
Browse files Browse the repository at this point in the history
PRC-495: fixed incorrect # apps in list
  • Loading branch information
severinbeauvais authored Sep 13, 2018
2 parents 6317979 + 827a62e commit f79610e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ export class ApplistListComponent implements OnInit, OnChanges, OnDestroy {
private setLoaded() {
// set first 'n' apps as 'loaded'
for (let i = 0; i < this.applications.length; i++) {
this.applications[i].isLoaded = (i <= this.numToLoad);
this.applications[i].isLoaded = (i < this.numToLoad);
}
}
}

0 comments on commit f79610e

Please sign in to comment.