mirror of
https://github.com/documize/community.git
synced 2025-07-27 17:19:42 +02:00
avatar initials improvements
This commit is contained in:
parent
dc8fceca6c
commit
235f8acf51
2 changed files with 575 additions and 568 deletions
|
@ -16,6 +16,13 @@ export function userInitials(params) {
|
|||
let firstname = params[0];
|
||||
let lastname = params[1];
|
||||
|
||||
if (is.undefined(firstname)) {
|
||||
firstname = " ";
|
||||
}
|
||||
if (is.undefined(lastname)) {
|
||||
lastname = " ";
|
||||
}
|
||||
|
||||
return (firstname.substring(0, 1) + lastname.substring(0, 1)).toUpperCase();
|
||||
}
|
||||
|
||||
|
|
File diff suppressed because one or more lines are too long
Loading…
Add table
Add a link
Reference in a new issue