Merge branch 'nice' into develop
This commit is contained in:
commit
be9951bd40
2 changed files with 10 additions and 3 deletions
|
|
@ -41,7 +41,9 @@ function fetchDataProfile(data: DataProfile) {
|
|||
fetchProfile(data.profileId);
|
||||
}
|
||||
profile.id = data.profileId;
|
||||
profile.fullName = `${data.prefix}${data.firstName} ${data.lastName}`;
|
||||
profile.fullName = `${data.prefix ?? ""}${data.firstName ?? ""} ${
|
||||
data.lastName ?? ""
|
||||
} `;
|
||||
profile.position =
|
||||
data.position == "" || data.position === null ? "-" : data.position;
|
||||
if (data.posTypeName && data.posLevelName) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue