diff --git a/hud/hud.js b/hud/hud.js index 79f1f7d..6ab56e3 100644 --- a/hud/hud.js +++ b/hud/hud.js @@ -294,6 +294,16 @@ const HUD = { document.getElementById('detailWaiting').textContent = this.formatElapsed(elapsed); document.getElementById('detailInfo').textContent = task.Details || '-'; + // Show location if available + const locationRow = document.getElementById('detailLocationRow'); + const locationValue = document.getElementById('detailLocation'); + if (task.ServicePointName && task.ServicePointName.length > 0) { + locationValue.textContent = task.ServicePointName; + locationRow.style.display = 'flex'; + } else { + locationRow.style.display = 'none'; + } + detail.style.setProperty('--detail-color', categoryColor); overlay.classList.add('visible'); }, diff --git a/hud/index.html b/hud/index.html index 97e5dfc..255bbee 100644 --- a/hud/index.html +++ b/hud/index.html @@ -355,6 +355,10 @@