diff --git a/console/src/app/app.component.ts b/console/src/app/app.component.ts index bfdb5bf2ce..0bf7d498db 100644 --- a/console/src/app/app.component.ts +++ b/console/src/app/app.component.ts @@ -116,6 +116,11 @@ export class AppComponent implements OnInit, OnDestroy { this.domSanitizer.bypassSecurityTrustResourceUrl('assets/mdi/lightbulb-off-outline.svg'), ); + this.matIconRegistry.addSvgIcon( + 'usb', + this.domSanitizer.bypassSecurityTrustResourceUrl('assets/mdi/usb-flash-drive-outline.svg'), + ); + this.matIconRegistry.addSvgIcon('mdi_radar', this.domSanitizer.bypassSecurityTrustResourceUrl('assets/mdi/radar.svg')); this.matIconRegistry.addSvgIcon( diff --git a/console/src/app/modules/avatar/avatar.component.html b/console/src/app/modules/avatar/avatar.component.html index 6225de4e52..7be0728c83 100644 --- a/console/src/app/modules/avatar/avatar.component.html +++ b/console/src/app/modules/avatar/avatar.component.html @@ -1,12 +1,23 @@ -
{{ data.desc | translate }}
+ +{{ 'MFA.LIST.SECONDFACTORDESCRIPTION' | translate }}
{{data.desc | translate}}
- -{{ 'POLICY.LOGIN_TEXTS.DESCRIPTION' | translate }}
+ +{{ 'POLICY.LOGIN_TEXTS.NEWERVERSIONEXISTS' | translate }}
diff --git a/console/src/app/modules/policies/login-texts/login-texts.component.ts b/console/src/app/modules/policies/login-texts/login-texts.component.ts index da363da730..ca47feb89f 100644 --- a/console/src/app/modules/policies/login-texts/login-texts.component.ts +++ b/console/src/app/modules/policies/login-texts/login-texts.component.ts @@ -93,6 +93,7 @@ const REQUESTMAP = { styleUrls: ['./login-texts.component.scss'], }) export class LoginTextsComponent implements OnInit, OnDestroy { + public loading: boolean = false; public currentPolicyChangeDate!: Timestamp.AsObject | undefined; public newerPolicyChangeDate!: Timestamp.AsObject | undefined; @@ -208,6 +209,7 @@ export class LoginTextsComponent implements OnInit, OnDestroy { } public async loadData(): Promise{{ 'POLICY.MESSAGE_TEXTS.DESCRIPTION' | translate }}
+