🤖 Auto commit for release 'develop' on 2026-04-03

This commit is contained in:
JC5
2026-04-03 07:31:27 +02:00
parent 4435231ffb
commit ecab686ac9
62 changed files with 268 additions and 791 deletions

View File

@@ -122,11 +122,7 @@ class ObjectGroupRepository implements ObjectGroupRepositoryInterface, UserGroup
public function search(string $query, int $limit): Collection
{
$dbQuery = $this->user
->objectGroups()
->orderBy('order', 'ASC')
->orderBy('title', 'ASC')
;
$dbQuery = $this->user->objectGroups()->orderBy('order', 'ASC')->orderBy('title', 'ASC');
if ('' !== $query) {
// split query on spaces just in case:
$parts = explode(' ', $query);