From 6b61c3240a65e180127ba23a061cb0dbf197e5a5 Mon Sep 17 00:00:00 2001 From: Rob Bond Date: Thu, 7 May 2026 09:07:55 +0100 Subject: [PATCH] fix: restore broken getSummary function declaration Co-Authored-By: Claude --- src/lib/proxmox.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/lib/proxmox.js b/src/lib/proxmox.js index 5127cb1..46c4a02 100644 --- a/src/lib/proxmox.js +++ b/src/lib/proxmox.js @@ -177,6 +177,9 @@ export async function powerControl(nodeName, vmid, type, action) { /** * Aggregated summary across all nodes. + * @returns {Promise} + */ +export async function getSummary() { const nodes = await getNodes(); let totalVMs = []; let totalLXC = [];