ensure loading all users (as long as there is a reasonable amount)

pull/11078/head
ulferts 2 years ago
parent 82c6fbf513
commit ad74c3ef41
No known key found for this signature in database
GPG Key ID: A205708DE1284017
  1. 2
      frontend/src/app/shared/components/autocompleter/user-autocompleter/user-autocompleter.component.ts

@ -190,7 +190,7 @@ export class UserAutocompleterComponent extends UntilDestroyedMixin implements O
return this
.halResourceService
.get<CollectionResource<UserResource>>(filteredURL.toString())
.get<CollectionResource<UserResource>>(filteredURL.toString(), { pageSize: -1 })
.pipe(
map((res) => res.elements.map((el) => ({
name: el.name, id: el.id, href: el.href, avatar: el.avatar,

Loading…
Cancel
Save