add " "
This commit is contained in:
parent
02e1e36a9c
commit
943bb42ffb
1 changed files with 3 additions and 1 deletions
|
|
@ -675,7 +675,9 @@ export class OrganizationDotnetController extends Controller {
|
||||||
commanderId,
|
commanderId,
|
||||||
commanderKeycloak,
|
commanderKeycloak,
|
||||||
posLevel:
|
posLevel:
|
||||||
(profile.posType?.posTypeShortName ?? null) + (profile.posLevel?.posLevelName ?? null),
|
(profile.posType == null || profile.posType?.posTypeShortName == null
|
||||||
|
? ""
|
||||||
|
: profile.posType?.posTypeShortName + " ") + (profile.posLevel?.posLevelName ?? null),
|
||||||
posType: profile.posType?.posTypeName ?? null,
|
posType: profile.posType?.posTypeName ?? null,
|
||||||
profileSalary: profile.profileSalary.length > 0 ? profile.profileSalary[0] : null,
|
profileSalary: profile.profileSalary.length > 0 ? profile.profileSalary[0] : null,
|
||||||
profileInsignia: profile.profileInsignias.length > 0 ? profile.profileInsignias[0] : null,
|
profileInsignia: profile.profileInsignias.length > 0 ? profile.profileInsignias[0] : null,
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue