mirror of
https://github.com/cisagov/manage.get.gov.git
synced 2025-08-12 20:49:41 +02:00
removed default empty options from Checkboxes as they are only needed for Selects
This commit is contained in:
parent
3708ef1672
commit
ba2788014b
4 changed files with 6 additions and 11 deletions
|
@ -37,7 +37,7 @@ class PortfolioOrgAddressForm(forms.ModelForm):
|
|||
state_territory = forms.ChoiceField(
|
||||
label="State, territory, or military post",
|
||||
required=True,
|
||||
choices=[("", "--Select--")] + DomainInformation.StateTerritoryChoices.choices,
|
||||
choices=DomainInformation.StateTerritoryChoices.choices,
|
||||
error_messages={
|
||||
"required": ("Select the state, territory, or military post where your organization is located.")
|
||||
},
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue