Fix: handle proxmoxbackupserver without datastore (#3979)

pull/3987/head
shamoon 3 months ago committed by GitHub
parent 6b1080ad43
commit 9243187490
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -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 memoryUsage = (hostData.data.memory.used / hostData.data.memory.total) * 100;
const failedTasks = tasksData.total >= 100 ? "99+" : tasksData.total;

Loading…
Cancel
Save