mirror of
https://github.com/nextcloud/server.git
synced 2026-04-21 14:23:17 -04:00
Merge pull request #45092 from nextcloud/fix/user-provider-search-shown
This commit is contained in:
commit
2ddfbf3e79
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;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue