Просмотр исходного кода

Fixes #4204: Fix assignment of mask length when bulk editing prefixes

Jeremy Stretch 6 лет назад
Родитель
Сommit
f05c7be394
2 измененных файлов с 3 добавлено и 3 удалено
  1. 1 0
      docs/release-notes/version-2.7.md
  2. 2 3
      netbox/utilities/views.py

+ 1 - 0
docs/release-notes/version-2.7.md

@@ -17,6 +17,7 @@
 * [#4194](https://github.com/netbox-community/netbox/issues/4194) - Role field should not be required when searching/filtering secrets
 * [#4196](https://github.com/netbox-community/netbox/issues/4196) - Fix exception when viewing LLDP neighbors page
 * [#4202](https://github.com/netbox-community/netbox/issues/4202) - Prevent reassignment to master device when bulk editing VC member interfaces
+* [#4204](https://github.com/netbox-community/netbox/issues/4204) - Fix assignment of mask length when bulk editing prefixes
 
 ---
 

+ 2 - 3
netbox/utilities/views.py

@@ -656,9 +656,8 @@ class BulkEditView(GetReturnURLMixin, View):
                                 try:
                                     model_field = model._meta.get_field(name)
                                 except FieldDoesNotExist:
-                                    # The form field is used to modify a field rather than set its value directly,
-                                    # so we skip it.
-                                    continue
+                                    # This form field is used to modify a field rather than set its value directly
+                                    model_field = None
 
                                 # Handle nullification
                                 if name in form.nullable_fields and name in nullified_fields: