diff --git a/web/src/admin/blueprints/BlueprintListPage.ts b/web/src/admin/blueprints/BlueprintListPage.ts index fe673a980..23463382b 100644 --- a/web/src/admin/blueprints/BlueprintListPage.ts +++ b/web/src/admin/blueprints/BlueprintListPage.ts @@ -126,8 +126,8 @@ export class BlueprintListPage extends TablePage { row(item: BlueprintInstance): TemplateResult[] { let description = undefined; const descKey = "blueprints.goauthentik.io/description"; - if (Object.hasOwn(item.metadata.labels, descKey)) { - description = item.metadata.labels[descKey]; + if (Object.hasOwn(item.metadata?.labels, descKey)) { + description = item.metadata?.labels[descKey]; } return [ html`
${item.name}