diff --git a/frontend/src/components/canvas/nodes/ProxmoxGroupNode.tsx b/frontend/src/components/canvas/nodes/ProxmoxGroupNode.tsx index e2e2384..2f18293 100644 --- a/frontend/src/components/canvas/nodes/ProxmoxGroupNode.tsx +++ b/frontend/src/components/canvas/nodes/ProxmoxGroupNode.tsx @@ -17,7 +17,15 @@ export function ProxmoxGroupNode(props: NodeProps>) { // Render as a regular node when container mode is disabled if (data.container_mode === false) { - return + return ( + <> + + + + + + + ) } const statusColor = STATUS_COLORS[data.status] @@ -78,38 +86,10 @@ export function ProxmoxGroupNode(props: NodeProps>) { {/* Cluster handles — left/right for same-cluster links */} - - - - + + + + ) }