update: scanner dashboard UI and Docker configuration for edge node
CI / lint (push) Failing after 5s
CI / test (push) Successful in 20s
Build edge-node / build (push) Successful in 33s

This commit is contained in:
Logan Cusano
2026-07-12 21:44:36 -04:00
parent 3fbdc50536
commit 9f026fa262
5 changed files with 104 additions and 17 deletions
+7 -4
View File
@@ -409,10 +409,13 @@
document.getElementById('system-id').textContent = d.assigned_system_id ?? '—';
// Audio Player
if (d.icecast_url && d.icecast_url !== currentIcecastUrl) {
currentIcecastUrl = d.icecast_url;
player.src = currentIcecastUrl;
document.getElementById('icecast-link').href = currentIcecastUrl;
if (d.icecast_url) {
const dynamicUrl = d.icecast_url.replace('localhost', window.location.hostname);
if (dynamicUrl !== currentIcecastUrl) {
currentIcecastUrl = dynamicUrl;
player.src = currentIcecastUrl;
document.getElementById('icecast-link').href = currentIcecastUrl;
}
}
document.getElementById('unconfigured-banner').style.display = d.configured ? 'none' : 'flex';