Show last 5 new apps

This commit is contained in:
Johannes Zellner
2020-02-12 23:24:33 +01:00
parent 59c5f22dbd
commit 8ca51f1877

View File

@@ -403,7 +403,7 @@ angular.module('Application').controller('AppStoreController', ['$scope', '$loca
};
function filterForNewApps(apps) {
var minApps = apps.length < 3 ? apps.length : 3; // prevent endless loop
var minApps = apps.length < 5 ? apps.length : 5; // prevent endless loop
var tmp = [];
var i = 0;