Fix: handle proxmoxbackupserver without datastore (#3979)

This commit is contained in:
shamoon 2024-09-10 13:11:08 -07:00 committed by GitHub
parent 6b1080ad43
commit 9243187490
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -29,7 +29,7 @@ export default function Component({ service }) {
); );
} }
const datastoreUsage = (datastoreData.data[0].used / datastoreData.data[0].total) * 100; const datastoreUsage = datastoreData.data ? (datastoreData.data[0].used / datastoreData.data[0].total) * 100 : 0;
const cpuUsage = hostData.data.cpu * 100; const cpuUsage = hostData.data.cpu * 100;
const memoryUsage = (hostData.data.memory.used / hostData.data.memory.total) * 100; const memoryUsage = (hostData.data.memory.used / hostData.data.memory.total) * 100;
const failedTasks = tasksData.total >= 100 ? "99+" : tasksData.total; const failedTasks = tasksData.total >= 100 ? "99+" : tasksData.total;