Skip to content

Commit

Permalink
missed file
Browse files Browse the repository at this point in the history
  • Loading branch information
KonstanceH committed Oct 22, 2024
1 parent 3eb32a4 commit ddf8aa6
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions src/components/PrimeUI/Shipment/Shipment.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -481,6 +481,29 @@ const Shipment = ({ shipment, moveId, onDelete, mtoServiceItems }) => {
)}
</>
)}
{shipment.mobileHomeShipment && (
<>
<h4>Mobile-Home-Shipment Specific Fields</h4>
<div className={descriptionListStyles.row}>
<dt>Mobile Home Year:</dt>
<dd>{shipment.mobileHomeShipment.year}</dd>
</div>
<div className={descriptionListStyles.row}>
<dt>Mobile Home Make:</dt>
<dd>{shipment.mobileHomeShipment.make}</dd>
</div>
<div className={descriptionListStyles.row}>
<dt>Mobile Home Model:</dt>
<dd>{shipment.mobileHomeShipment.model}</dd>
</div>
<div className={descriptionListStyles.row}>
<dt>Mobile Home Dimensions (Inches):</dt>
<dd>Length: {shipment.mobileHomeShipment.lengthInInches}</dd>
<dd>Width: {shipment.mobileHomeShipment.widthInInches}</dd>
<dd>Height: {shipment.mobileHomeShipment.heightInInches}</dd>
</div>
</>
)}
</dl>
);
};
Expand Down

0 comments on commit ddf8aa6

Please sign in to comment.