From 51d362c368094c3d93a42de156140281eb776f38 Mon Sep 17 00:00:00 2001 From: "DESKTOP-1R2VSQH\\Lenovo ThinkPad E490" Date: Wed, 25 Feb 2026 10:43:31 +0700 Subject: [PATCH] fix --- src/utils/function.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/function.ts b/src/utils/function.ts index 013ea7ad0..fb0320f5b 100644 --- a/src/utils/function.ts +++ b/src/utils/function.ts @@ -69,7 +69,7 @@ export function calculateAge(birthDate: Date | null) { */ export function getColumnLabel(col: any, isAct: boolean) { if (col.name === "posNo" && isAct) { - return "เลขที่ตำแหน่ง (รักษาการแทน)"; + return `${col.label} (รักษาการแทน)`; } return col.label; }