Fix API endpoint - use correct /api/v1/cluster/status

This commit is contained in:
2025-09-30 12:14:17 -03:00
parent 883c50a104
commit af42204897
2 changed files with 987 additions and 1 deletions

View File

@@ -756,7 +756,7 @@
async function loadDashboard() {
try {
showLoading();
const response = await fetch('/api/cluster/health');
const response = await fetch('/api/v1/cluster/status');
const data = await response.json();
currentData = data;
updateDashboard(data);