Fix Recent Activity showing empty rows — PAYLOAD_TYPES was undefined

ReferenceError killed the entire .map() call, rendering empty div shells
with just the dot and no text. Added PAYLOAD_TYPES constant to nodes.js.
This commit is contained in:
you
2026-03-18 23:04:01 +00:00
parent 4409281946
commit 8505b95b4d
+1
View File
@@ -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 '';