mirror of
https://github.com/goauthentik/authentik
synced 2026-05-01 20:07:20 +02:00
web: Fix nested table column span behavior. (#17177)
This commit is contained in:
@@ -84,13 +84,9 @@ export class DeleteObjectsTable<T extends object> extends Table<T> {
|
||||
}
|
||||
return this.renderUsedBy(this.usedByData.get(item) || []);
|
||||
};
|
||||
return html`<td colspan="2">
|
||||
<div class="pf-c-table__expandable-row-content">
|
||||
${this.usedBy
|
||||
? until(handler(), html`<ak-spinner size=${PFSize.Large}></ak-spinner>`)
|
||||
: nothing}
|
||||
</div>
|
||||
</td>`;
|
||||
return html`${this.usedBy
|
||||
? until(handler(), html`<ak-spinner size=${PFSize.Large}></ak-spinner>`)
|
||||
: nothing}`;
|
||||
}
|
||||
|
||||
renderUsedBy(usedBy: UsedBy[]): TemplateResult {
|
||||
|
||||
Reference in New Issue
Block a user