From 1ccc3bfc7d5d720088b485ca9323659355068149 Mon Sep 17 00:00:00 2001 From: Pablo Revilla Date: Thu, 28 Aug 2025 16:19:47 -0700 Subject: [PATCH] Added the traceroute and neighbours to the map --- meshview/templates/map.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 ----