web/admin: fix undefined being shown when viewing application
Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org>
This commit is contained in:
@ -43,7 +43,7 @@ export class ApplicationViewPage extends LitElement {
|
||||
render(): TemplateResult {
|
||||
return html`<ak-page-header
|
||||
icon=${this.application?.metaIcon || ""}
|
||||
header=${this.application?.name}
|
||||
header=${this.application?.name || t`Loading`}
|
||||
description=${ifDefined(this.application?.metaPublisher)}
|
||||
.iconImage=${true}>
|
||||
</ak-page-header>
|
||||
|
||||
@ -25,7 +25,7 @@ export class ProviderListPage extends TablePage<Provider> {
|
||||
return true;
|
||||
}
|
||||
pageTitle(): string {
|
||||
return t`Provider`;
|
||||
return t`Providers`;
|
||||
}
|
||||
pageDescription(): string {
|
||||
return t`Provide support for protocols like SAML and OAuth to assigned applications.`;
|
||||
|
||||
Reference in New Issue
Block a user