web/admin: fix missing css for descriptor list in cert list
Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org>
This commit is contained in:
parent
526af26536
commit
a9db538c63
|
@ -1,7 +1,8 @@
|
||||||
import { gettext } from "django";
|
import { gettext } from "django";
|
||||||
import { customElement, html, property, TemplateResult } from "lit-element";
|
import { CSSResult, customElement, html, property, TemplateResult } from "lit-element";
|
||||||
import { AKResponse } from "../../api/Client";
|
import { AKResponse } from "../../api/Client";
|
||||||
import { TablePage } from "../../elements/table/TablePage";
|
import { TablePage } from "../../elements/table/TablePage";
|
||||||
|
import PFDescriptionList from "@patternfly/patternfly/components/DescriptionList/description-list.css";
|
||||||
|
|
||||||
import { CryptoApi, CertificateKeyPair } from "authentik-api";
|
import { CryptoApi, CertificateKeyPair } from "authentik-api";
|
||||||
|
|
||||||
|
@ -33,6 +34,10 @@ export class CertificateKeyPairListPage extends TablePage<CertificateKeyPair> {
|
||||||
@property()
|
@property()
|
||||||
order = "name";
|
order = "name";
|
||||||
|
|
||||||
|
static get styles(): CSSResult[] {
|
||||||
|
return super.styles.concat(PFDescriptionList);
|
||||||
|
}
|
||||||
|
|
||||||
apiEndpoint(page: number): Promise<AKResponse<CertificateKeyPair>> {
|
apiEndpoint(page: number): Promise<AKResponse<CertificateKeyPair>> {
|
||||||
return new CryptoApi(DEFAULT_CONFIG).cryptoCertificatekeypairsList({
|
return new CryptoApi(DEFAULT_CONFIG).cryptoCertificatekeypairsList({
|
||||||
ordering: this.order,
|
ordering: this.order,
|
||||||
|
|
Reference in New Issue