diff --git a/client/src/app/site/modules/global-headbar/components/account-button/account-button.component.ts b/client/src/app/site/modules/global-headbar/components/account-button/account-button.component.ts index 47e1c97ae9..078c1aaecd 100644 --- a/client/src/app/site/modules/global-headbar/components/account-button/account-button.component.ts +++ b/client/src/app/site/modules/global-headbar/components/account-button/account-button.component.ts @@ -209,7 +209,9 @@ export class AccountButtonComponent extends BaseUiComponent implements OnInit { public getAriaLabel(): string { let stringForUserPresent: string; - if (!this.hasActiveMeeting) { + if (this.operator.isAnonymous) { + stringForUserPresent = this.translate.instant(`Account is public`); + } else if (!this.hasActiveMeeting) { stringForUserPresent = this.translate.instant(`Account of {} is not in Meeting`); } else if (this.user.isPresentInMeeting()) { stringForUserPresent = this.translate.instant(