update visible apps order
This commit is contained in:
parent
3f2a307226
commit
e1c6784d41
1 changed files with 4 additions and 0 deletions
|
|
@ -65,6 +65,10 @@ class AppRepository
|
|||
}
|
||||
}
|
||||
|
||||
usort($visibleApps, function($a, $b) {
|
||||
return ($a['name'] < $b['name']) ? -1 : 1;
|
||||
});
|
||||
|
||||
return $visibleApps;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue