web/admin: use full page size for modals
Signed-off-by: Jens Langhammer <jens@goauthentik.io>
This commit is contained in:
parent
fbd00bf5f8
commit
4c5b07a091
|
@ -31,7 +31,7 @@ export class GroupSelectModal extends TableModal<Group> {
|
|||
return new CoreApi(DEFAULT_CONFIG).coreGroupsList({
|
||||
ordering: this.order,
|
||||
page: page,
|
||||
pageSize: (await uiConfig()).pagination.perPage / 2,
|
||||
pageSize: (await uiConfig()).pagination.perPage,
|
||||
search: this.search || "",
|
||||
});
|
||||
}
|
||||
|
|
|
@ -32,7 +32,7 @@ export class UserEvents extends Table<Event> {
|
|||
return new EventsApi(DEFAULT_CONFIG).eventsEventsList({
|
||||
page: page,
|
||||
ordering: this.order,
|
||||
pageSize: (await uiConfig()).pagination.perPage / 2,
|
||||
pageSize: (await uiConfig()).pagination.perPage,
|
||||
username: this.targetUser,
|
||||
});
|
||||
}
|
||||
|
|
Reference in New Issue