From 50d383e4837489bc7f9e51c3c5d289af577848e3 Mon Sep 17 00:00:00 2001 From: minORC Date: Fri, 19 Apr 2024 11:04:49 -0700 Subject: [PATCH] DBC22-2027: Fix for reversed wheelchair accessibility info --- src/frontend/src/Components/map/mapPopup.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/frontend/src/Components/map/mapPopup.js b/src/frontend/src/Components/map/mapPopup.js index 6191ef5b7..c5304d2e6 100644 --- a/src/frontend/src/Components/map/mapPopup.js +++ b/src/frontend/src/Components/map/mapPopup.js @@ -462,7 +462,7 @@ export function getRestStopPopup(restStopFeature) {

{restStopData.properties.NUMBER_OF_TOILETS} {restStopData.properties.TOILET_TYPE} toilet{restStopData.properties.NUMBER_OF_TOILETS > 1 ? 's' : ''}

- {restStopData.properties.WHEELCHAIR_ACCESS_TOILET === "No" ? ( + {restStopData.properties.WHEELCHAIR_ACCESS_TOILET === "Yes" ? ( 'Wheelchair accessible' ) : ( 'Not wheelchair accessible'