Skip to content

Commit

Permalink
DBC22-2027: Fix for reversed wheelchair accessibility info
Browse files Browse the repository at this point in the history
  • Loading branch information
minORC committed Apr 19, 2024
1 parent 9bab7c1 commit 50d383e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/frontend/src/Components/map/mapPopup.js
Original file line number Diff line number Diff line change
Expand Up @@ -462,7 +462,7 @@ export function getRestStopPopup(restStopFeature) {
<div>
<p className="toilets">{restStopData.properties.NUMBER_OF_TOILETS} {restStopData.properties.TOILET_TYPE} toilet{restStopData.properties.NUMBER_OF_TOILETS > 1 ? 's' : ''}</p>
<p>
{restStopData.properties.WHEELCHAIR_ACCESS_TOILET === "No" ? (
{restStopData.properties.WHEELCHAIR_ACCESS_TOILET === "Yes" ? (
'Wheelchair accessible'
) : (
'Not wheelchair accessible'
Expand Down

0 comments on commit 50d383e

Please sign in to comment.