From 2fd36b4b11522f39300cf901aa5d92d2576ff68d Mon Sep 17 00:00:00 2001 From: Pablo Revilla Date: Sun, 7 Dec 2025 17:29:01 -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 7ed1434..07f8617 100644 --- a/meshview/templates/node.html +++ b/meshview/templates/node.html @@ -679,7 +679,7 @@ async function loadTrack(){ async function loadPackets(){ const url = new URL("/api/packets", window.location.origin); - url.searchParams.set("from_node_id", fromNodeId); + url.searchParams.set("node_id", fromNodeId); // node_id includes to/from url.searchParams.set("limit", 200); const res = await fetch(url);