1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-16 08:13:42 +00:00

[PM-25603] Use angular template for avatar (#15978)

We should be able to simplify the angular component by using svg element directly.
This commit is contained in:
Oscar Hinton
2025-10-03 11:51:25 +02:00
committed by GitHub
parent cb20889a94
commit a1e226b598
4 changed files with 63 additions and 86 deletions

View File

@@ -453,7 +453,7 @@ export class Utils {
};
}
static isNullOrWhitespace(str: string): boolean {
static isNullOrWhitespace(str: string | null | undefined): boolean {
return str == null || typeof str !== "string" || str.trim() === "";
}