Fixes #19166: Fix bulk import support for base_choices

This commit is contained in:
Jeremy Stretch 2025-04-22 09:40:24 -04:00
parent 918470a2bb
commit 9c5702cb83

View File

@ -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):