From 2b02166d82f724c67fcb327bda6518db1dc707c5 Mon Sep 17 00:00:00 2001 From: Pablo Revilla Date: Sun, 7 Dec 2025 20:02:33 -0800 Subject: [PATCH] minor fix on node.html table of tackets shows to and from not just from. --- meshview/templates/node.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meshview/templates/node.html b/meshview/templates/node.html index 07f8617..34cf39c 100644 --- a/meshview/templates/node.html +++ b/meshview/templates/node.html @@ -691,7 +691,7 @@ async function loadPackets(){ for (const pkt of (data.packets || []).reverse()) { const safePayload = (pkt.payload || "").replace(/[<>]/g, m => m === "<" ? "<" : ">"); const localTime = formatLocalTime(pkt.import_time_us); - const fromCell = nodeLink(pkt.from_node_id); + const fromCell = nodeLink(pkt.from_node_id,pkt.long_name); const toCell = nodeLink(pkt.to_node_id, pkt.to_long_name); // Neighbor packets (port 71) → draw neighbors on map