From 660344b16b3c11e77d1a45d59727a8530e74267a Mon Sep 17 00:00:00 2001 From: Arthur Hanson Date: Thu, 25 Jul 2024 14:36:16 +0700 Subject: [PATCH] 11969 fix --- netbox/dcim/models/devices.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/netbox/dcim/models/devices.py b/netbox/dcim/models/devices.py index 954a49f6c..a790cceef 100644 --- a/netbox/dcim/models/devices.py +++ b/netbox/dcim/models/devices.py @@ -395,7 +395,7 @@ class ModuleType(ImageAttachmentsMixin, PrimaryModel, WeightMixin): blank=True ) - clone_fields = ('manufacturer', 'weight', 'weight_unit',) + clone_fields = ('manufacturer', 'weight', 'weight_unit', 'airflow') prerequisite_models = ( 'dcim.Manufacturer', ) @@ -1177,7 +1177,7 @@ class Module(PrimaryModel, ConfigContextModel): help_text=_('A unique tag used to identify this device') ) - clone_fields = ('device', 'module_type', 'status', 'airflow') + clone_fields = ('device', 'module_type', 'status') class Meta: ordering = ('module_bay',)