From 255e3881ddb862dd85c84a7079767441bd733b01 Mon Sep 17 00:00:00 2001 From: Jason Novinger Date: Wed, 2 Jul 2025 08:41:51 -0400 Subject: [PATCH] Fixes #19800: ModuleType import supports associating ModuleTypeProfile --- netbox/dcim/forms/bulk_import.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/netbox/dcim/forms/bulk_import.py b/netbox/dcim/forms/bulk_import.py index 3ad4ced91..ba6491cbe 100644 --- a/netbox/dcim/forms/bulk_import.py +++ b/netbox/dcim/forms/bulk_import.py @@ -471,7 +471,7 @@ class ModuleTypeImportForm(NetBoxModelImportForm): model = ModuleType fields = [ 'manufacturer', 'model', 'part_number', 'description', 'airflow', 'weight', 'weight_unit', 'comments', - 'tags', + 'tags', 'profile', ]