header page footer

This commit is contained in:
Peter Maquiran
2022-04-07 15:35:48 +01:00
9 changed files with 50 additions and 76 deletions
+1 -1
View File
@@ -109,7 +109,7 @@ class SessionService {
get getManagerInitials() {
let names = this._user.FullName.split(' ') || ' ',
let names = this._user.ManagerName.split(' ') || ' ',
initials = names[0].substring(0, 1).toUpperCase();
if (names.length > 1) {
initials += names[names.length - 1].substring(0, 1).toUpperCase();