Reduce min comment length

This commit is contained in:
rubenwardy 2023-08-06 20:55:55 +01:00
parent 7492c308ad
commit a1eac9959e
2 changed files with 3 additions and 3 deletions

@ -177,7 +177,7 @@ def delete_reply(id):
class CommentForm(FlaskForm): class CommentForm(FlaskForm):
comment = TextAreaField(lazy_gettext("Comment"), [InputRequired(), Length(10, 2000)]) comment = TextAreaField(lazy_gettext("Comment"), [InputRequired(), Length(2, 2000)])
submit = SubmitField(lazy_gettext("Comment")) submit = SubmitField(lazy_gettext("Comment"))