Fixes #19800: ModuleType import supports associating ModuleTypeProfile

This commit is contained in:
Jason Novinger 2025-07-02 08:41:51 -04:00
parent 2a5d3abafb
commit 255e3881dd

View File

@ -471,7 +471,7 @@ class ModuleTypeImportForm(NetBoxModelImportForm):
model = ModuleType model = ModuleType
fields = [ fields = [
'manufacturer', 'model', 'part_number', 'description', 'airflow', 'weight', 'weight_unit', 'comments', 'manufacturer', 'model', 'part_number', 'description', 'airflow', 'weight', 'weight_unit', 'comments',
'tags', 'tags', 'profile',
] ]