This commit is contained in:
Jake Kasper
2025-09-02 13:08:38 -05:00
parent f37b43bf4f
commit 3fcc8bf988
2 changed files with 8 additions and 6 deletions

View File

@@ -151,12 +151,14 @@ const MowingExecutionModal = ({ plan, onClose, onComplete }) => {
<h3 className="text-xl font-semibold">Execute Mowing</h3>
<button onClick={onClose} className="text-gray-500 hover:text-gray-700"></button>
</div>
<div className="grid grid-cols-4 gap-4 text-sm mb-4">
<div className="grid grid-cols-5 gap-4 text-sm mb-2">
<div><span className="font-medium">Property:</span> {plan.property_name}</div>
<div><span className="font-medium">Areas:</span> {plan.section_names}</div>
<div><span className="font-medium">Mower:</span> {plan.equipment_name}</div>
<div><span className="font-medium">Cut Height:</span> {plan.cut_height_inches}"</div>
<div><span className="font-medium">Direction:</span> {plan.direction}</div>
</div>
<div className="text-xs text-gray-600 mb-2">Tip: Follow the dashed purple guideline on the map.</div>
<div className="h-80 border rounded mb-4 overflow-hidden">
<PropertyMap
property={null}
@@ -166,7 +168,7 @@ const MowingExecutionModal = ({ plan, onClose, onComplete }) => {
gpsTrack={gpsTrack}
currentLocation={currentLocation}
center={center || [39.8283, -98.5795]}
zoom={center ? 16 : 15}
zoom={center ? 19 : 15}
direction={plan.direction}
className="h-80 w-full"
/>