Skip to content

Commit 60cdf89

Browse files
Fixes #19166: Fix bulk import support for base_choices (#19257)
1 parent 77bfc40 commit 60cdf89

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

netbox/extras/forms/bulk_import.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ class CustomFieldChoiceSetImportForm(CSVModelForm):
9696
class Meta:
9797
model = CustomFieldChoiceSet
9898
fields = (
99-
'name', 'description', 'extra_choices', 'order_alphabetically',
99+
'name', 'description', 'base_choices', 'extra_choices', 'order_alphabetically',
100100
)
101101

102102
def clean_extra_choices(self):

0 commit comments

Comments
 (0)