diff --git a/app/static/index.html b/app/static/index.html index 5fa85ad..e1c0c54 100644 --- a/app/static/index.html +++ b/app/static/index.html @@ -1822,37 +1822,6 @@ - -
-
-
- -
-
-
-
Storage Utilization
-
-
-
- -
-
-
-
Total PVCs
-
-
-
- -
-
-
-
Storage Warnings
-
-
-
- -
-
-
-
Storage Classes
-
-
@@ -2800,15 +2769,7 @@ function updateDashboardStorageMetrics(data) { try { - const storageUtilization = data.storage_utilization_percent || 0; - - // Update storage metrics cards - document.getElementById('dashboard-storage-utilization').textContent = `${storageUtilization.toFixed(1)}%`; - document.getElementById('dashboard-total-pvcs').textContent = data.total_pvcs || '0'; - document.getElementById('dashboard-storage-warnings').textContent = data.storage_warnings || '0'; - document.getElementById('dashboard-storage-classes').textContent = data.storage_classes ? data.storage_classes.length : '0'; - - // Update storage donut chart + // Update storage donut chart only updateStorageDonutChart(data); } catch (error) {