1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-09-23 03:22:50 +02:00

AC-2617 update vault header to have loading text on slow connection(#11121)

This commit is contained in:
Jason Ng 2024-09-20 09:44:05 -04:00 committed by GitHub
parent 5f25bd93cd
commit ece6f8aae2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -122,7 +122,9 @@ export class VaultHeaderComponent implements OnInit {
return this.i18nService.t("unassigned");
}
return `${this.organization?.name} ${headerType}`;
return this.organization?.name
? `${this.organization?.name} ${headerType}`
: this.i18nService.t("collections");
}
get icon() {