Switch ordering for domain default field

pull/193/head
Andrew Godwin 2022-12-17 17:17:59 -07:00
rodzic 2772ee7188
commit c5e00a2c73
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -65,7 +65,7 @@ class DomainCreate(FormView):
)
default = forms.BooleanField(
help_text="If this is the default option for new identities",
widget=forms.Select(choices=[(True, "Yes"), (False, "No")]),
widget=forms.Select(choices=[(False, "No"), (True, "Yes")]),
required=False,
)