Skip to content

Commit

Permalink
Show 'Extra Parking Services' in Parking Details view
Browse files Browse the repository at this point in the history
  • Loading branch information
bartwr committed Apr 11, 2024
1 parent 2af8af1 commit ec00144
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions src/components/parking/ParkingViewServices.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,13 @@ const ParkingViewServices = ({ parkingdata }: { parkingdata: any }) => {
);
})}
</div>
{parkingdata.ExtraServices && <>
{parkingdata.ExtraServices.split(',').map(x => {
return <div key={x}>
{x.trim()}
</div>
})}
</>}
</SectionBlock>
<HorizontalDivider className="my-4" />
</>
Expand Down

0 comments on commit ec00144

Please sign in to comment.