Skip to content

Commit

Permalink
fix author field
Browse files Browse the repository at this point in the history
  • Loading branch information
yoshson committed Aug 27, 2024
1 parent b2f9e80 commit 9464898
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions form_designer/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,13 +86,13 @@ class Form(models.Model):
),
(
"author_email_field",
forms.EmailField(
forms.CharField(
label=capfirst(_("author's email field")),
help_text=_(
"The author of the submission will be added to the Cc: if this is set to an existing form field below."
),
required=False,
widget=widgets.AdminEmailInputWidget,
widget=widgets.AdminTextInputWidget,
),
),
],
Expand Down

0 comments on commit 9464898

Please sign in to comment.