stc

a simple time card webapp
git clone _git@git.brennen.work:stc.git
Log | Files | Refs | README

commit 3d5aeaa83b9332a6435a7ef357b72ea21b2636d1
parent d946e91c1a818946d024d8e0dfee21e7bd7590a1
Author: Youth Employment Program Production <youthemployment22@gmail.com>
Date:   Fri,  3 May 2024 11:49:04 -0600

bugfix: don't require value for replacing note

Diffstat:
Mapp/forms.py | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app/forms.py b/app/forms.py @@ -208,7 +208,7 @@ class updateProject(FlaskForm): submitEntr = SubmitField('Submit') class newNote(FlaskForm): - note = StringField('Replace Note', validators=[DataRequired()]) + note = StringField('Replace Note', validators=[optional()]) submitEntr = SubmitField('Submit') class FleetCheckoutForm(FlaskForm):