From b95868069219ea9001d0ace4d09568fb20e17fd1 Mon Sep 17 00:00:00 2001 From: AdisakKanthawilang Date: Tue, 22 Apr 2025 11:31:21 +0700 Subject: [PATCH] fix --- src/controllers/EvaluationController.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/controllers/EvaluationController.ts b/src/controllers/EvaluationController.ts index 1c8f9c5..9d607e5 100644 --- a/src/controllers/EvaluationController.ts +++ b/src/controllers/EvaluationController.ts @@ -1589,7 +1589,7 @@ export class EvaluationController { })), performances: evaluation.performances.map((performance) => ({ year: performance.year, - type: performance.type == "EXPERT" ? "ชำนาญการ" : performance.type == "EXPERTISE" ? "เชียวชาญ" : performance.type == "SPECIAL_EXPERT" ? "ชำนาญการพิเศษ": null, + type: performance.type, subject: performance.subject, evaluationResult: performance.evaluationResult, })),