diff options
| author | dujinkim <dujin.kim@dtsolution.co.kr> | 2025-07-02 00:45:49 +0000 |
|---|---|---|
| committer | dujinkim <dujin.kim@dtsolution.co.kr> | 2025-07-02 00:45:49 +0000 |
| commit | 2acf5f8966a40c1c9a97680c8dc263ee3f1ad3d1 (patch) | |
| tree | f406b5c86f563347c7fd088a85fd1a82284dc5ff /lib/b-rfq/summary-table | |
| parent | 6a9ca20deddcdcbe8495cf5a73ec7ea5f53f9b55 (diff) | |
(대표님/최겸) 20250702 변경사항 업데이트
Diffstat (limited to 'lib/b-rfq/summary-table')
| -rw-r--r-- | lib/b-rfq/summary-table/summary-rfq-columns.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/b-rfq/summary-table/summary-rfq-columns.tsx b/lib/b-rfq/summary-table/summary-rfq-columns.tsx index 40f143b2..af5c22b2 100644 --- a/lib/b-rfq/summary-table/summary-rfq-columns.tsx +++ b/lib/b-rfq/summary-table/summary-rfq-columns.tsx @@ -411,11 +411,11 @@ export function getRFQColumns({ setRowAction, router }: GetRFQColumnsProps): Col <div className="flex flex-col gap-1 text-xs"> <div className="flex items-center justify-between"> <span className="text-muted-foreground">초기:</span> - <span>{initial}개사 ({initialRate}%)</span> + <span>{initial}개사 ({Number(initialRate).toFixed(0)}%)</span> </div> <div className="flex items-center justify-between"> <span className="text-muted-foreground">최종:</span> - <span>{final}개사 ({finalRate}%)</span> + <span>{final}개사 ({Number(finalRate).toFixed(0)}%)</span> </div> </div> ); |
