fix: add force-dynamic to auth-protected pages, sunum gallery+detail modal, form step 3 layout, academy tour updates
This commit is contained in:
@@ -159,9 +159,9 @@ export function PropertyFormSheet({ open, onOpenChange, property, onSuccess }: P
|
||||
{
|
||||
label: "Özellikler",
|
||||
content: (
|
||||
<div className="grid grid-cols-5 gap-3">
|
||||
<div className="grid grid-cols-2 gap-3">
|
||||
<div className="grid gap-1.5">
|
||||
<Label htmlFor="roomCount">Oda</Label>
|
||||
<Label htmlFor="roomCount">Oda sayısı</Label>
|
||||
<select name="roomCount" defaultValue={property?.roomCount ?? ""}
|
||||
className="border-input bg-background h-9 rounded-md border px-3 text-sm">
|
||||
<option value="">—</option>
|
||||
@@ -186,11 +186,11 @@ export function PropertyFormSheet({ open, onOpenChange, property, onSuccess }: P
|
||||
<Input id="floor" name="floor" type="number" defaultValue={property?.floor ?? ""} />
|
||||
</div>
|
||||
<div className="grid gap-1.5">
|
||||
<Label htmlFor="totalFloors">Top. kat</Label>
|
||||
<Label htmlFor="totalFloors">Toplam kat</Label>
|
||||
<Input id="totalFloors" name="totalFloors" type="number" defaultValue={property?.totalFloors ?? ""} />
|
||||
</div>
|
||||
<div className="grid gap-1.5">
|
||||
<Label htmlFor="buildingAge">Yaş</Label>
|
||||
<div className="grid gap-1.5 col-span-2">
|
||||
<Label htmlFor="buildingAge">Bina yaşı</Label>
|
||||
<Input id="buildingAge" name="buildingAge" type="number" min="0" defaultValue={property?.buildingAge ?? ""} />
|
||||
</div>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user