From 474a3965894e21266b2b288bd3caa1a283e6f971 Mon Sep 17 00:00:00 2001 From: cynfo3000 Date: Fri, 6 Mar 2026 23:11:13 +0100 Subject: [PATCH] feat: PBS-Badge neben Hostname in Proxmox-Uebersicht --- frontend/src/pages/ProxmoxServers.jsx | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) 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}}