From d87acc97c361980541eadab81706ecc9590a3fb9 Mon Sep 17 00:00:00 2001 From: Jeremy Stretch Date: Fri, 12 May 2017 12:06:37 -0400 Subject: [PATCH] Fixes #1171: Allow removing site assignment when bulk editing VLANs --- netbox/ipam/forms.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/netbox/ipam/forms.py b/netbox/ipam/forms.py index 6e5489084..ec596d612 100644 --- a/netbox/ipam/forms.py +++ b/netbox/ipam/forms.py @@ -701,7 +701,7 @@ class VLANBulkEditForm(BootstrapMixin, CustomFieldBulkEditForm): description = forms.CharField(max_length=100, required=False) class Meta: - nullable_fields = ['group', 'tenant', 'role', 'description'] + nullable_fields = ['site', 'group', 'tenant', 'role', 'description'] def vlan_status_choices():