fix: remove showError calls that were hiding the 4 first metric cards

This commit is contained in:
2025-10-06 15:52:18 -03:00
parent 817478f4f9
commit 2ffcb9059e

View File

@@ -1874,7 +1874,7 @@
if (loadingProgress.isActive) { if (loadingProgress.isActive) {
console.log('Loading timeout - no activity for 30 seconds'); console.log('Loading timeout - no activity for 30 seconds');
hideFullscreenLoading(); hideFullscreenLoading();
showError('metrics-grid', 'Request timeout - API stopped responding'); console.error('Request timeout - API stopped responding');
} }
}, 30000); }, 30000);
} }
@@ -2071,9 +2071,9 @@
hideFullscreenLoading(); hideFullscreenLoading();
if (error.name === 'AbortError') { if (error.name === 'AbortError') {
showError('metrics-grid', 'Request timeout - API stopped responding'); console.error('Request timeout - API stopped responding');
} else { } else {
showError('metrics-grid', 'Failed to load cluster data: ' + error.message); console.error('Failed to load cluster data: ' + error.message);
} }
} }
} }