소스 검색

Fixes #16806: Fix redirect URL when creating contact assignments with "add another" button

Jeremy Stretch 1 년 전
부모
커밋
e9dd5aa17b
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      netbox/tenancy/views.py

+ 1 - 1
netbox/tenancy/views.py

@@ -365,7 +365,7 @@ class ContactAssignmentEditView(generic.ObjectEditView):
 
     def get_extra_addanother_params(self, request):
         return {
-            'content_type': request.GET.get('content_type'),
+            'object_type': request.GET.get('object_type'),
             'object_id': request.GET.get('object_id'),
         }