diff --git a/frontend/src/pages/ProxmoxServers.jsx b/frontend/src/pages/ProxmoxServers.jsx index 3750a03..4cb8f3e 100644 --- a/frontend/src/pages/ProxmoxServers.jsx +++ b/frontend/src/pages/ProxmoxServers.jsx @@ -151,6 +151,7 @@ export default function ProxmoxServers() { containers: `${ctRunning}/${ctTotal}`, ctRunning, ctTotal, + hasPBS: sys?.pbs?.available === true, sys, proxmox, } @@ -304,7 +305,16 @@ export default function ProxmoxServers() { {a.customer ? {a.customerNumber} : } )} - {isColVisible('name') && {a.name}} + {isColVisible('name') && ( + +
+ {a.name} + {a.hasPBS && ( + PBS + )} +
+ + )} {isColVisible('hostname') && {a.hostname}} {isColVisible('version') && {a.pveVersion || '—'}} {isColVisible('ip') && {a.ip}}