Skip to content

Commit 37d2eba

Browse files
authored
fix author field (#38)
1 parent b2f9e80 commit 37d2eba

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

form_designer/models.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -86,13 +86,13 @@ class Form(models.Model):
8686
),
8787
(
8888
"author_email_field",
89-
forms.EmailField(
89+
forms.CharField(
9090
label=capfirst(_("author's email field")),
9191
help_text=_(
9292
"The author of the submission will be added to the Cc: if this is set to an existing form field below."
9393
),
9494
required=False,
95-
widget=widgets.AdminEmailInputWidget,
95+
widget=widgets.AdminTextInputWidget,
9696
),
9797
),
9898
],

0 commit comments

Comments
 (0)