From 72786aeb1df8877c69c3f70997fd690fb60b58fb Mon Sep 17 00:00:00 2001 From: AdisakKanthawilang Date: Mon, 21 Apr 2025 11:01:29 +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 6a903f6..56903db 100644 --- a/src/controllers/EvaluationController.ts +++ b/src/controllers/EvaluationController.ts @@ -1235,7 +1235,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, })),