feature/framework #1

Merged
master merged 9 commits from feature/framework into main 2025-08-28 10:21:15 +02:00
Showing only changes of commit c840a4da84 - Show all commits

View File

@@ -155,11 +155,8 @@ function updateClusterStatusBadge(totalNodes, clientInitialized, error) {
statusText = 'Cluster Discovering...';
statusIcon = '🔍';
statusClass = 'cluster-status-discovering';
} else if (error) {
statusText = 'Cluster Error';
statusIcon = '❌';
statusClass = 'cluster-status-error';
} else if (totalNodes === 0) {
} else if (error || totalNodes === 0) {
// Show "Cluster Offline" for both errors and when no nodes are discovered
statusText = 'Cluster Offline';
statusIcon = '🔴';
statusClass = 'cluster-status-offline';