From 8fb52fcd31e84983c7a771c185950cf5d8ed7e1e Mon Sep 17 00:00:00 2001 From: Patrick Jentsch Date: Wed, 30 Oct 2019 14:29:17 +0100 Subject: [PATCH] Remove default values. --- app/main/forms.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/main/forms.py b/app/main/forms.py index 64f1005e..e737a1ea 100644 --- a/app/main/forms.py +++ b/app/main/forms.py @@ -21,7 +21,7 @@ class AddCorpusFileForm(FlaskForm): class CreateCorpusForm(FlaskForm): description = StringField('Description', validators=[DataRequired(), Length(1, 64)]) - submit = SubmitField('Create corpus') + submit = SubmitField() title = StringField('Title', validators=[DataRequired(), Length(1, 32)])