Correct users store

This commit is contained in:
ShimaginAndrey 2021-07-01 19:21:10 +03:00
parent af2d105790
commit 496f5b89f6

View file

@ -52,7 +52,7 @@ export class storeUsers {
}
getInitials (name) {
const fio = Common.Utils.UserInfoParser.getParsedName(name).split(' ');
const fio = AscCommon.UserInfoParser.getParsedName(name).split(' ');
let initials = fio[0].substring(0, 1).toUpperCase();
for (let i = fio.length-1; i>0; i--) {
if (fio[i][0]!=='(' && fio[i][0]!==')') {