diff --git a/src/meshcore_hub/web/static/js/map-main.js b/src/meshcore_hub/web/static/js/map-main.js
index 5e7a2ab..4a5ab40 100644
--- a/src/meshcore_hub/web/static/js/map-main.js
+++ b/src/meshcore_hub/web/static/js/map-main.js
@@ -104,10 +104,10 @@
var relativeTime = typeof formatRelativeTime === 'function' ? formatRelativeTime(node.last_seen) : '';
var timeDisplay = relativeTime ? ' (' + relativeTime + ')' : '';
- // Use logo for infrastructure nodes, blue circle for others
+ // Use red circle for infrastructure nodes, blue circle for others
var iconHtml;
if (node.is_infra) {
- iconHtml = '';
+ iconHtml = '
Last seen: ' + node.last_seen.substring(0, 19).replace('T', ' ') + '
' : ''; return 'Type: ' + typeDisplay + '
' + roleHtml + diff --git a/src/meshcore_hub/web/templates/map.html b/src/meshcore_hub/web/templates/map.html index b6efa03..47e7149 100644 --- a/src/meshcore_hub/web/templates/map.html +++ b/src/meshcore_hub/web/templates/map.html @@ -65,12 +65,12 @@