diff options
| author | TheSiahxyz <164138827+TheSiahxyz@users.noreply.github.com> | 2025-11-10 11:25:19 +0900 |
|---|---|---|
| committer | TheSiahxyz <164138827+TheSiahxyz@users.noreply.github.com> | 2025-11-10 11:25:19 +0900 |
| commit | a5501ad1d1cb836d2b2f84e9b0f06049e22c901e (patch) | |
| tree | 667ed8c5d6ec35b109190e9f976d66ae54def4ce /components/bidding/price-adjustment-dialog.tsx | |
| parent | b0fe980376fcf1a19ff4b90851ca8b01f378fdc0 (diff) | |
| parent | f8a38907911d940cb2e8e6c9aa49488d05b2b578 (diff) | |
Merge remote-tracking branch 'origin/dujinkim' into master_homemaster
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> |
