minor fix on node.html table of tackets shows to and from not just from.

This commit is contained in:
Pablo Revilla
2025-12-07 17:29:01 -08:00
parent 8aa1c59873
commit 2fd36b4b11

View File

@@ -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);