Merge pull request #45092 from nextcloud/fix/user-provider-search-shown

pull/46714/head
Benjamin Gaussorgues 2024-07-24 16:38:13 +07:00 committed by GitHub
commit 2ddfbf3e79
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

@ -29,7 +29,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;
}