From b2a6651db77be260ea26f24c3d9aaf7f2ac498de Mon Sep 17 00:00:00 2001 From: Pouzor Date: Sun, 8 Mar 2026 01:05:13 +0100 Subject: [PATCH] fix: show cluster handles in both container and simple mode on Proxmox node --- .../canvas/nodes/ProxmoxGroupNode.tsx | 46 ++++++------------- 1 file changed, 13 insertions(+), 33 deletions(-) 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 */} - - - - + + + + ) }