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

This commit is contained in:
Jeremy Stretch 2025-04-22 11:29:00 -04:00 committed by GitHub
parent 77bfc40579
commit 60cdf89cad
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

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