Skip to content

Commit

Permalink
Merge pull request #996 from WildMeOrg/issue-995-null-map-mark
Browse files Browse the repository at this point in the history
Do not display map marker if latitude and longitude are not present on an Encounter
  • Loading branch information
naknomum authored Jan 31, 2025
2 parents 716f558 + 6b90c2b commit 961a7b5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/webapp/encounters/encounter.jsp
Original file line number Diff line number Diff line change
Expand Up @@ -1284,7 +1284,7 @@ if(CommonConfiguration.showProperty("showCountry",context)){
if(((enc.getDecimalLatitude()==null)||(enc.getDecimalLongitude()==null))||(!visible)){
%>
marker.setVisible(true);
marker.setVisible(false);
<%
}
Expand Down

0 comments on commit 961a7b5

Please sign in to comment.