diff --git a/meshview/templates/map.html b/meshview/templates/map.html index 01e60c4..d919324 100644 --- a/meshview/templates/map.html +++ b/meshview/templates/map.html @@ -125,7 +125,7 @@ var channels = new Set(); // ---- Coordinate helper ---- function isInvalidCoord(node) { - return (!node || node.lat == null || node.long == null || node.lat === 0 || node.long === 0); + return (!node || node.lat == null || node.long == null || node.lat == 0 || node.long == 0); } // ---- Plot nodes ----