'Recently updated' becomes 'popular' used to be 'featured'

This commit is contained in:
Johannes Zellner
2020-06-13 22:47:10 +02:00
parent e0778c52e8
commit 297a635613
2 changed files with 2 additions and 1 deletions
+1
View File
@@ -62,6 +62,7 @@ angular.module('Application').controller('AppStoreController', ['$scope', '$loca
$scope.categoryLabel = function (category) {
if (category === 'new') return 'New Apps';
if (category === 'recent') return 'Recently Updated';
if (category === 'featured') return 'Popular Apps';
var tmp = $scope.categories.find(function (c) { return c.id === category; });
if (tmp) return tmp.label;