From 8a374b16b5e9515f85cb4c74c92116187c9b2af6 Mon Sep 17 00:00:00 2001 From: Jeremy Stretch Date: Mon, 3 Feb 2020 12:25:20 -0500 Subject: [PATCH] Correct nullable_fields for ServiceBulkEditForm --- 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 237ee2238..e166136dd 100644 --- a/netbox/ipam/forms.py +++ b/netbox/ipam/forms.py @@ -1392,5 +1392,5 @@ class ServiceBulkEditForm(BootstrapMixin, CustomFieldBulkEditForm): class Meta: nullable_fields = [ - 'site', 'tenant', 'role', 'description', + 'description', ]