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