Ordering field should not be required

This commit is contained in:
Jeremy Stretch 2025-04-09 13:02:59 -04:00
parent a4f654edfa
commit e6756a17a3

View File

@ -312,6 +312,7 @@ class TableConfigForm(forms.ModelForm):
)
ordering = SimpleArrayField(
base_field=forms.CharField(),
required=False,
label=_('Ordering'),
help_text=_(
"Enter a comma-separated list of column names. Prepend a name with a hyphen to reverse the order."