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:
@@ -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() === "";
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user