2
0
Эх сурвалжийг харах

Fixes #19166: Fix bulk import support for base_choices (#19257)

Jeremy Stretch 1 жил өмнө
parent
commit
60cdf89cad

+ 1 - 1
netbox/extras/forms/bulk_import.py

@@ -96,7 +96,7 @@ class CustomFieldChoiceSetImportForm(CSVModelForm):
     class Meta:
         model = CustomFieldChoiceSet
         fields = (
-            'name', 'description', 'extra_choices', 'order_alphabetically',
+            'name', 'description', 'base_choices', 'extra_choices', 'order_alphabetically',
         )
 
     def clean_extra_choices(self):