1
0
mirror of https://github.com/netbox-community/netbox.git synced 2024-05-10 07:54:54 +00:00

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

This commit is contained in:
Jeremy Stretch
2020-02-19 13:28:07 -05:00
parent 2cf990bd92
commit f05c7be394
2 changed files with 3 additions and 3 deletions

View File

@@ -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: