diff options
| author | dujinkim <dujin.kim@dtsolution.co.kr> | 2025-07-07 09:25:31 +0000 |
|---|---|---|
| committer | dujinkim <dujin.kim@dtsolution.co.kr> | 2025-07-07 09:25:31 +0000 |
| commit | 426551207de299205ab3b2e3b83cf231df8c606b (patch) | |
| tree | 8751bda54bf29c04ddac3416d9ffc2eb7f34b60d /lib/evaluation/table/evaluation-columns.tsx | |
| parent | 9b30d58aa575ea1ac6f20a0bd8c14ae380723d94 (diff) | |
(최겸) 정기평가 최종 선택 간 finalScore type 수정
Diffstat (limited to 'lib/evaluation/table/evaluation-columns.tsx')
| -rw-r--r-- | lib/evaluation/table/evaluation-columns.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/evaluation/table/evaluation-columns.tsx b/lib/evaluation/table/evaluation-columns.tsx index e88c5764..4b7d9a80 100644 --- a/lib/evaluation/table/evaluation-columns.tsx +++ b/lib/evaluation/table/evaluation-columns.tsx @@ -263,7 +263,7 @@ export function getPeriodicEvaluationsColumns({setRowAction}: GetColumnsProps): cell: ({ row }) => { const finalScore = row.getValue<number>("finalScore"); return finalScore ? ( - <span className="font-bold text-green-600">{finalScore.toFixed(1)}</span> + <span className="font-bold text-green-600">{Number(finalScore).toFixed(1)}</span> ) : ( <span className="text-muted-foreground">-</span> ); |
