From 554a0908df81402e53d2e17268b91669570689b0 Mon Sep 17 00:00:00 2001 From: Burathar Date: Sat, 25 Sep 2021 12:24:57 +0200 Subject: [PATCH] Fix submit field label --- biscd/biscd/froms.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/biscd/biscd/froms.py b/biscd/biscd/froms.py index 1ef00b0..657bc4b 100644 --- a/biscd/biscd/froms.py +++ b/biscd/biscd/froms.py @@ -33,7 +33,7 @@ class ProjectForm(FlaskForm): projectname = StringField('Project Name', validators=[DataRequired()]) git_repo = StringField('Git Repo') public = BooleanField('Public Project') - submit = SubmitField('Add Project') + submit = SubmitField('Save') old_name = '' def validate_projectname(self, projectname):