diff --git a/meshview/templates/chat.html b/meshview/templates/chat.html
index 6c3a57b..e5c5a80 100644
--- a/meshview/templates/chat.html
+++ b/meshview/templates/chat.html
@@ -134,7 +134,7 @@ document.addEventListener("DOMContentLoaded", async () => {
${escapeHtml(packet.channel || "")}
-
+
${escapeHtml((packet.long_name || "").trim() || `Node ${packet.from_node_id}`)}
diff --git a/meshview/templates/firehose.html b/meshview/templates/firehose.html
index 946bd69..1b0667e 100644
--- a/meshview/templates/firehose.html
+++ b/meshview/templates/firehose.html
@@ -229,13 +229,13 @@ async function fetchUpdates() {
for (const pkt of packets.reverse()) {
const from = pkt.from_node_id === 4294967295
? `All`
- : `${nodeMap[pkt.from_node_id] || pkt.from_node_id}`;
+ : `${nodeMap[pkt.from_node_id] || pkt.from_node_id}`;
const to = pkt.to_node_id === 1
? `direct to MQTT`
: pkt.to_node_id === 4294967295
? `All`
- : `${nodeMap[pkt.to_node_id] || pkt.to_node_id}`;
+ : `${nodeMap[pkt.to_node_id] || pkt.to_node_id}`;
// Inline link next to port tag
let inlineLinks = "";
diff --git a/meshview/templates/map.html b/meshview/templates/map.html
index 1497093..1c7d3d3 100644
--- a/meshview/templates/map.html
+++ b/meshview/templates/map.html
@@ -205,7 +205,7 @@ function renderNodesOnMap(){
marker.nodeId = node.key;
marker.originalColor = color;
markerById[node.key] = marker;
- const popup = `${node.long_name} (${node.short_name})
+ const popup = `${node.long_name} (${node.short_name})
Channel: ${node.channel}
Model: ${node.hw_model}
Role: ${node.role}
diff --git a/meshview/templates/new_packet.html b/meshview/templates/new_packet.html
index 63a5971..3954428 100644
--- a/meshview/templates/new_packet.html
+++ b/meshview/templates/new_packet.html
@@ -219,13 +219,13 @@ document.addEventListener("DOMContentLoaded", async () => {