From 9bc2ad4a25982bb894202e598ed9cd04218790df Mon Sep 17 00:00:00 2001 From: Jeremy Stretch Date: Fri, 28 Mar 2025 15:21:55 -0400 Subject: [PATCH] Profile is nullable --- netbox/dcim/forms/bulk_edit.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/netbox/dcim/forms/bulk_edit.py b/netbox/dcim/forms/bulk_edit.py index e49674f8f..66e6532cc 100644 --- a/netbox/dcim/forms/bulk_edit.py +++ b/netbox/dcim/forms/bulk_edit.py @@ -641,7 +641,7 @@ class ModuleTypeBulkEditForm(NetBoxModelBulkEditForm): name=_('Chassis') ), ) - nullable_fields = ('part_number', 'weight', 'weight_unit', 'description', 'comments') + nullable_fields = ('part_number', 'weight', 'weight_unit', 'profile', 'description', 'comments') class DeviceRoleBulkEditForm(NetBoxModelBulkEditForm):