diff --git a/docs/release-notes/version-2.11.md b/docs/release-notes/version-2.11.md index 253db7302..3929a3f8d 100644 --- a/docs/release-notes/version-2.11.md +++ b/docs/release-notes/version-2.11.md @@ -5,6 +5,7 @@ ### Bug Fixes * [#6553](https://github.com/netbox-community/netbox/issues/6553) - ProviderNetwork search should match on name +* [#6563](https://github.com/netbox-community/netbox/issues/6563) - Fix filtering by location for cable connection forms --- diff --git a/netbox/dcim/forms.py b/netbox/dcim/forms.py index c9c7c86a6..0649168e2 100644 --- a/netbox/dcim/forms.py +++ b/netbox/dcim/forms.py @@ -3948,6 +3948,7 @@ class ConnectCableToDeviceForm(BootstrapMixin, CustomFieldModelForm): required=False, query_params={ 'site_id': '$termination_b_site', + 'location_id': '$termination_b_location', 'rack_id': '$termination_b_rack', } )