Skip to content

Commit 81193eb

Browse files
committed
Fixes #6106: Allow assigning a virtual interface as the parent of an existing interface
1 parent 38b09dc commit 81193eb

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

docs/release-notes/version-2.11.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
* [#6100](https://github.com/netbox-community/netbox/issues/6100) - Fix VM interfaces table "add interfaces" link
88
* [#6104](https://github.com/netbox-community/netbox/issues/6104) - Fix location column on racks table
99
* [#6105](https://github.com/netbox-community/netbox/issues/6105) - Hide checkboxes for VMs under cluster VMs view
10+
* [#6106](https://github.com/netbox-community/netbox/issues/6106) - Allow assigning a virtual interface as the parent of an existing interface
1011

1112
---
1213

netbox/dcim/forms.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3072,10 +3072,7 @@ class InterfaceForm(BootstrapMixin, InterfaceCommonForm, CustomFieldModelForm):
30723072
parent = DynamicModelChoiceField(
30733073
queryset=Interface.objects.all(),
30743074
required=False,
3075-
label='Parent interface',
3076-
query_params={
3077-
'kind': 'physical',
3078-
}
3075+
label='Parent interface'
30793076
)
30803077
lag = DynamicModelChoiceField(
30813078
queryset=Interface.objects.all(),

0 commit comments

Comments
 (0)