Update badge text and title for loading state to improve user feedback

This commit is contained in:
Fabian Schieder 2026-03-01 16:33:11 +01:00
parent 142ae3b23f
commit 8c0068ccbb

View File

@ -135,8 +135,8 @@ document.querySelectorAll('.card').forEach(card => {
badge.textContent = 'Offline';
badge.title = svc.detail || 'Offline';
} else {
badge.textContent = 'Unbekannt';
badge.title = svc.detail || 'Unbekannt';
badge.textContent = 'Lädt...';
badge.title = svc.detail || 'Lädt...';
}
}
};