diff --git a/src/widgets/proxmox/component.jsx b/src/widgets/proxmox/component.jsx index 3741904a9..00f20e58f 100644 --- a/src/widgets/proxmox/component.jsx +++ b/src/widgets/proxmox/component.jsx @@ -31,7 +31,7 @@ export default function Component({ service }) { } const { data } = clusterData ; - const vms = data.filter(item => item.type === "qemu") || []; + const vms = data.filter(item => item.type === "qemu" && item.template === 0) || []; const lxc = data.filter(item => item.type === "lxc" && item.template === 0) || []; const nodes = data.filter(item => item.type === "node") || [];