From 6b90c2b24d5297bf31c258feb5245aa04339e262 Mon Sep 17 00:00:00 2001 From: holmbergius Date: Sat, 25 Jan 2025 14:51:39 -0800 Subject: [PATCH] Fix logical flaw in marker display logic --- src/main/webapp/encounters/encounter.jsp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/webapp/encounters/encounter.jsp b/src/main/webapp/encounters/encounter.jsp index 63392d0f3b..f9b85b579a 100755 --- a/src/main/webapp/encounters/encounter.jsp +++ b/src/main/webapp/encounters/encounter.jsp @@ -1284,7 +1284,7 @@ if(CommonConfiguration.showProperty("showCountry",context)){ if(((enc.getDecimalLatitude()==null)||(enc.getDecimalLongitude()==null))||(!visible)){ %> - marker.setVisible(true); + marker.setVisible(false); <% }