diff --git a/lib/Service/AppRepository.php b/lib/Service/AppRepository.php index 93d3104..3ca8836 100644 --- a/lib/Service/AppRepository.php +++ b/lib/Service/AppRepository.php @@ -65,6 +65,10 @@ class AppRepository } } + usort($visibleApps, function($a, $b) { + return ($a['name'] < $b['name']) ? -1 : 1; + }); + return $visibleApps; } }