web/admin: Show inbuilt authentik db as source in sources list

Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org>
This commit is contained in:
Jens Langhammer
2021-04-08 22:25:57 +02:00
parent c5abecf578
commit 3c47555276
2 changed files with 21 additions and 0 deletions

View File

@ -230,6 +230,10 @@ export abstract class Table<T> extends LitElement {
return html``;
}
renderRowsAbove(): TemplateResult {
return html``;
}
firstUpdated(): void {
this.fetch();
}
@ -265,6 +269,7 @@ export abstract class Table<T> extends LitElement {
${this.columns().map((col) => col.render(this))}
</tr>
</thead>
${this.renderRowsAbove()}
${(this.isLoading || !this.data) ? this.renderLoading() : this.renderRows()}
</table>
<div class="pf-c-pagination pf-m-bottom">