diff --git a/frontend/projects/ui/src/app/pages/apps-routes/app-list/app-list.page.ts b/frontend/projects/ui/src/app/pages/apps-routes/app-list/app-list.page.ts index f3aec5ee2..f7d7685ff 100644 --- a/frontend/projects/ui/src/app/pages/apps-routes/app-list/app-list.page.ts +++ b/frontend/projects/ui/src/app/pages/apps-routes/app-list/app-list.page.ts @@ -19,7 +19,11 @@ export class AppListPage { return !length || prev.length !== length }), map(([_, pkgs]) => - pkgs.sort((a, b) => (b.manifest.title > a.manifest.title ? -1 : 1)), + pkgs.sort((a, b) => + b.manifest.title.toLowerCase() > a.manifest.title.toLowerCase() + ? -1 + : 1, + ), ), )