From 2f79d987a82331ef2573b345573dc83112fbe07e Mon Sep 17 00:00:00 2001 From: Martin Hauser Date: Wed, 16 Sep 2026 14:36:10 +0200 Subject: [PATCH] fix(virtualization): Restore Cluster Group in VM placement panel Restore the Cluster Group and its link alongside the Cluster name, matching the display before the declarative UI conversion. Fixes #23181 --- netbox/virtualization/ui/panels.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/netbox/virtualization/ui/panels.py b/netbox/virtualization/ui/panels.py index c3cf4317a..0b31e982b 100644 --- a/netbox/virtualization/ui/panels.py +++ b/netbox/virtualization/ui/panels.py @@ -66,7 +66,7 @@ class VirtualMachinePlacementPanel(panels.ObjectAttributesPanel): title = _('Placement') site = attrs.RelatedObjectAttr('site', linkify=True, grouped_by='group') - cluster = attrs.RelatedObjectAttr('cluster', linkify=True) + cluster = attrs.RelatedObjectAttr('cluster', linkify=True, grouped_by='group') cluster_type = attrs.RelatedObjectAttr('cluster.type', linkify=True) device = attrs.RelatedObjectAttr('device', linkify=True)