Browse Source

Merge pull request #3205 from ananace/fix-interface-connection

Fixes #3204: Fix connecting cables to interfaces
Jeremy Stretch 6 years ago
parent
commit
3c83a18291
1 changed files with 1 additions and 1 deletions
  1. 1 1
      netbox/dcim/forms.py

+ 1 - 1
netbox/dcim/forms.py

@@ -2680,7 +2680,7 @@ class ConnectCableToInterfaceForm(ConnectCableToDeviceForm):
             api_url='/api/dcim/interfaces/',
             disabled_indicator='cable',
             additional_query_params={
-                'type': 'physical',
+                'kind': 'physical',
             }
         )
     )