summaryrefslogtreecommitdiff
path: root/components
diff options
context:
space:
mode:
Diffstat (limited to 'components')
-rw-r--r--components/bidding/bidding-conditions-edit.tsx7
1 files changed, 3 insertions, 4 deletions
diff --git a/components/bidding/bidding-conditions-edit.tsx b/components/bidding/bidding-conditions-edit.tsx
index a78bb0e0..92893867 100644
--- a/components/bidding/bidding-conditions-edit.tsx
+++ b/components/bidding/bidding-conditions-edit.tsx
@@ -105,7 +105,7 @@ export function BiddingConditionsEdit({ biddingId, initialConditions }: BiddingC
</Button>
</CardHeader>
<CardContent>
- <div className="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-4 text-sm">
+ <div className="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-4 text-sm">
<div>
<Label className="text-muted-foreground">지급조건</Label>
<p className="font-medium">{conditions.paymentTerms || "미설정"}</p>
@@ -139,12 +139,11 @@ export function BiddingConditionsEdit({ biddingId, initialConditions }: BiddingC
<Label className="text-muted-foreground">연동제 적용</Label>
<p className="font-medium">{conditions.isPriceAdjustmentApplicable ? "적용 가능" : "적용 불가"}</p>
</div>
- {conditions.sparePartOptions && (
- <div className="col-span-full">
+ <div>
<Label className="text-muted-foreground">스페어파트 옵션</Label>
<p className="font-medium">{conditions.sparePartOptions}</p>
</div>
- )}
+
</div>
</CardContent>
</Card>