show all nodes in db

This commit is contained in:
pablorevilla-meshtastic
2026-05-23 09:03:32 -07:00
parent f1ad6333dd
commit 4695537291
+1 -1
View File
@@ -416,7 +416,7 @@ document.addEventListener("DOMContentLoaded", async function() {
try {
setStatus("Loading nodes…");
await nextFrame();
const res = await fetch("/api/nodes?days_active=3");
const res = await fetch("/api/nodes");
if (!res.ok) throw new Error("Failed to fetch nodes");
const data = await res.json();