1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-12 14:23:32 +00: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

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() {