web: improve layout of expanded event info

This commit is contained in:
Jens Langhammer 2021-03-11 15:15:17 +01:00
parent d8f106b976
commit 734399755d
1 changed files with 2 additions and 2 deletions

View File

@ -33,7 +33,7 @@ export class EventListPage extends TablePage<Event> {
return new EventsApi(DEFAULT_CONFIG).eventsEventsList({ return new EventsApi(DEFAULT_CONFIG).eventsEventsList({
ordering: this.order, ordering: this.order,
page: page, page: page,
pageSize: PAGE_SIZE * 3, pageSize: PAGE_SIZE,
search: this.search || "", search: this.search || "",
}); });
} }
@ -61,7 +61,7 @@ export class EventListPage extends TablePage<Event> {
renderExpanded(item: Event): TemplateResult { renderExpanded(item: Event): TemplateResult {
return html` return html`
<td role="cell" colspan="4"> <td role="cell" colspan="1">
<div class="pf-c-table__expandable-row-content"> <div class="pf-c-table__expandable-row-content">
<ak-event-info .event=${item as EventWithContext}></ak-event-info> <ak-event-info .event=${item as EventWithContext}></ak-event-info>
</div> </div>