Skip to content

Commit

Permalink
Merge pull request #89 from Stichting-CROW/acceptance
Browse files Browse the repository at this point in the history
Release 2024-04-11 #2
  • Loading branch information
bartwr authored Apr 11, 2024
2 parents 73a7f82 + 704b8c8 commit e8f8b77
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/components/parking/ParkingView.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,10 @@ const ParkingView = ({
) : null}
</PageTitle>
</div>
{parkingdata?.Description && <p className="mb-8">
{parkingdata?.Description}
</p>}


<div className="flex justify-between">
<div data-name="content-left" className="sm:mr-12">
Expand Down
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
1 change: 1 addition & 0 deletions src/types/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ export type ParkingDetailsType = {
Plaats: string,
Type: string,
SiteID: string,
Description: string;
Image: any;
Open_ma: Date,
Dicht_ma: Date,
Expand Down

0 comments on commit e8f8b77

Please sign in to comment.