diff options
| author | dujinkim <dujin.kim@dtsolution.co.kr> | 2025-11-07 08:39:04 +0000 |
|---|---|---|
| committer | dujinkim <dujin.kim@dtsolution.co.kr> | 2025-11-07 08:39:04 +0000 |
| commit | ba8cd44a0ed2c613a5f2cee06bfc9bd0f61f21c7 (patch) | |
| tree | 7fb626c184a1fa48b28bf83571dadca2306bd1b5 /components/bidding/price-adjustment-dialog.tsx | |
| parent | b0fe980376fcf1a19ff4b90851ca8b01f378fdc0 (diff) | |
(최겸) 입찰/견적 수정사항
Diffstat (limited to 'components/bidding/price-adjustment-dialog.tsx')
| -rw-r--r-- | components/bidding/price-adjustment-dialog.tsx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/components/bidding/price-adjustment-dialog.tsx b/components/bidding/price-adjustment-dialog.tsx index 982d8b90..149b8e9a 100644 --- a/components/bidding/price-adjustment-dialog.tsx +++ b/components/bidding/price-adjustment-dialog.tsx @@ -127,11 +127,11 @@ export function PriceAdjustmentDialog({ <div className="grid grid-cols-2 gap-4"> <div> <label className="text-xs text-gray-500">기준시점</label> - <p className="text-sm font-medium">{formatDate(data.referenceDate, "kr")}</p> + <p className="text-sm font-medium">{data.referenceDate ? formatDate(data.referenceDate, "kr") : '-'}</p> </div> <div> <label className="text-xs text-gray-500">비교시점</label> - <p className="text-sm font-medium">{formatDate(data.comparisonDate, "kr")}</p> + <p className="text-sm font-medium">{data.comparisonDate ? formatDate(data.comparisonDate, "kr") : '-'}</p> </div> </div> <div> @@ -162,7 +162,7 @@ export function PriceAdjustmentDialog({ </div> <div> <label className="text-xs text-gray-500">조정일</label> - <p className="text-sm font-medium">{formatDate(data.adjustmentDate, "kr")}</p> + <p className="text-sm font-medium">{data.adjustmentDate ? formatDate(data.adjustmentDate, "kr") : '-'}</p> </div> </div> <div> |
