fix issue with empty cat

This commit is contained in:
Simon Vieille 2020-08-13 16:33:02 +02:00
commit c6a43f755d
3 changed files with 12 additions and 8 deletions

View file

@ -188,7 +188,11 @@ class NavController extends Controller
}
foreach ($items as $category => $value) {
ksort($items[$category]['apps']);
if (empty($items[$category]['apps'])) {
unset($items[$category]);
} else {
ksort($items[$category]['apps']);
}
}
usort($items, function ($a, $b) {