From 8505b95b4d160d729ddce05f8dc4e5db6a4bb41d Mon Sep 17 00:00:00 2001 From: you Date: Wed, 18 Mar 2026 23:04:01 +0000 Subject: [PATCH] =?UTF-8?q?Fix=20Recent=20Activity=20showing=20empty=20row?= =?UTF-8?q?s=20=E2=80=94=20PAYLOAD=5FTYPES=20was=20undefined?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ReferenceError killed the entire .map() call, rendering empty div shells with just the dot and no text. Added PAYLOAD_TYPES constant to nodes.js. --- public/nodes.js | 1 + 1 file changed, 1 insertion(+) diff --git a/public/nodes.js b/public/nodes.js index 47a5622..3d9bb65 100644 --- a/public/nodes.js +++ b/public/nodes.js @@ -3,6 +3,7 @@ (function () { let nodes = []; + const PAYLOAD_TYPES = {0:'Request',1:'Response',2:'Direct Msg',3:'ACK',4:'Advert',5:'Channel Msg',7:'Anon Req',8:'Path',9:'Trace'}; function escapeHtml(s) { if (!s) return '';