Merge pull request #46724 from nextcloud/backport/45092/stable28

This commit is contained in:
John Molakvoæ 2024-07-27 16:53:40 +02:00 committed by GitHub
commit 998dbd068e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -47,7 +47,7 @@ class UserSearch implements IProvider {
}
public function getOrder(string $route, array $routeParameters): ?int {
return $route === 'settings.Users.usersList'
return str_starts_with($route, 'settings.Users.usersList')
? 300
: null;
}