From 189f518e30229c10f2057f1269129402d41ed443 Mon Sep 17 00:00:00 2001 From: waruneeauy Date: Wed, 9 Oct 2024 12:02:47 +0700 Subject: [PATCH] fixing bug --- src/controllers/ProfileController.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/controllers/ProfileController.ts b/src/controllers/ProfileController.ts index e24a7cad..f1f6c5f1 100644 --- a/src/controllers/ProfileController.ts +++ b/src/controllers/ProfileController.ts @@ -4916,7 +4916,7 @@ export class ProfileController extends Controller { idcard: item.citizenId, posLevelName: item.posLevel == null ? null : item.posLevel.posLevelName, posTypeName: item.posType == null ? null : item.posType.posTypeName, - posNo: `${posMaster == null ? null : posMaster.posMasterNo}${shortName}`, + posNo: posMaster == null ? null : `${posMaster.posMasterNo}${shortName}`, positionField: position == null ? null : position.positionField, positionArea: position == null ? null : position.positionArea, posExecutiveName: posExecutive,