From f87831c3a55d432c6aabd31bf55cd1f87fe4cc11 Mon Sep 17 00:00:00 2001 From: pablorevilla-meshtastic Date: Wed, 18 Feb 2026 16:17:18 -0800 Subject: [PATCH] small map change --- meshview/templates/map.html | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/meshview/templates/map.html b/meshview/templates/map.html index 1caf633..6a21415 100644 --- a/meshview/templates/map.html +++ b/meshview/templates/map.html @@ -26,11 +26,11 @@ .blinking-tooltip { background: white; color: black; - border: 2px solid #111; + border: 1px solid #111; border-radius: 6px; padding: 6px 10px; font-size: 14px; - font-weight: 600; + font-weight: 400; box-shadow: 0 2px 8px rgba(0,0,0,0.25); } .blinking-tooltip.text-packet { @@ -432,24 +432,24 @@ function renderNodesOnMap(){ markerById[node.key] = marker; const popup = ` - ${node.long_name} (${node.short_name})
+ ${node.long_name} (${node.short_name})
- ${node.channel}
- ${node.hw_model}
- ${node.role}
- ${ + ${node.channel}
+ ${node.hw_model}
+ ${node.role}
+ ${ node.is_mqtt_gateway ? (mapTranslations.yes || "Yes") : (mapTranslations.no || "No") }
${ node.last_seen_us - ? ` ${timeAgoFromUs(node.last_seen_us)}
` + ? ` ${timeAgoFromUs(node.last_seen_us)}
` : "" } ${ node.firmware - ? ` ${node.firmware}
` + ? ` ${node.firmware}
` : "" } `;