Merge branch 'bob/2311-combo-boxes' into bob/2711-domain-mgr-remove

This commit is contained in:
David Kennedy 2025-01-22 13:17:52 -05:00
commit e3b667ae93
No known key found for this signature in database
GPG key ID: 6528A5386E66B96B
2 changed files with 2 additions and 2 deletions

View file

@ -471,7 +471,7 @@ class DomainOrgNameAddressForm(forms.ModelForm):
error_messages={ error_messages={
"required": ("Select the state, territory, or military post where your organization is located.") "required": ("Select the state, territory, or military post where your organization is located.")
}, },
widget=ComboboxWidget(), widget=ComboboxWidget(attrs={"required":True}),
) )
class Meta: class Meta:

View file

@ -41,7 +41,7 @@ class PortfolioOrgAddressForm(forms.ModelForm):
error_messages={ error_messages={
"required": ("Select the state, territory, or military post where your organization is located.") "required": ("Select the state, territory, or military post where your organization is located.")
}, },
widget=ComboboxWidget, widget=ComboboxWidget(attrs={"required":True}),
) )
class Meta: class Meta: