update visible apps order

This commit is contained in:
Simon Vieille 2020-08-12 16:32:26 +02:00
parent 3f2a307226
commit e1c6784d41
Signed by: deblan
GPG key ID: 03383D15A1D31745

View file

@ -65,6 +65,10 @@ class AppRepository
}
}
usort($visibleApps, function($a, $b) {
return ($a['name'] < $b['name']) ? -1 : 1;
});
return $visibleApps;
}
}