more updates

This commit is contained in:
pablorevilla-meshtastic
2026-05-20 07:05:40 -07:00
parent 1089cfd256
commit f1ad6333dd
+5 -1
View File
@@ -546,7 +546,11 @@ function renderReliabilityMap(gatewayRows, nodesById) {
}).bindPopup(`
<b>${nodeLink(row.nodeId, nodesById)}</b><br>
Reliability: ${row.percent.toFixed(1)}%<br>
Heard: ${row.heardCount} (${row.total})
Heard:
<button class="reach-heard-link" type="button" onclick="openGatewayPacketModal(${row.nodeId})">
${row.heardCount}
</button>
<span class="text-secondary">(${row.total})</span>
`).addTo(reliabilityMapLayer);
bounds.push(latLng);
});