Skip to content

Commit 75a8fe3

Browse files
authored
fix(AppSearch): Always sort apps first for search
Since it's now "harder" to open apps, there is a reason to always sort them first when searching. Part of #60241, more reasoning in the issue Signed-off-by: Laura Kramolis <git@kramo.page>
1 parent cba62ee commit 75a8fe3

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

apps/appstore/lib/Search/AppSearch.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ public function getName(): string {
3636

3737
#[\Override]
3838
public function getOrder(string $route, array $routeParameters): int {
39-
return $route === 'appstore.Page.viewApps' ? -50 : 100;
39+
return -50;
4040
}
4141

4242
#[\Override]

0 commit comments

Comments
 (0)