mirror of
https://github.com/Kpa-clawbot/meshcore-analyzer.git
synced 2026-04-27 14:55:15 +00:00
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:
@@ -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 '';
|
||||
|
||||
Reference in New Issue
Block a user