From faa4bc9c4dcd208aaa0891e0c561657adfb9755e Mon Sep 17 00:00:00 2001 From: AdisakKanthawilang Date: Tue, 8 Apr 2025 11:16:04 +0700 Subject: [PATCH] fix \n --- 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 7e5420a6..f8e8bbf2 100644 --- a/src/controllers/ProfileController.ts +++ b/src/controllers/ProfileController.ts @@ -7191,7 +7191,7 @@ export class ProfileController extends Controller { : posMaster_.orgChild1.orgChild1Name, posMaster_ == null || posMaster_.orgRoot == null ? null : posMaster_.orgRoot.orgRootName, ]; - const org = fullNameParts.filter((part) => part !== undefined && part !== null).join(" "); + const org = fullNameParts.filter((part) => part !== undefined && part !== null).join("\n"); //find commander(ผู้บังคับบัญชา) let node = 4;