mirror of
https://github.com/minetest/contentdb.git
synced 2024-12-23 14:32:25 +01:00
Reduce min comment length
This commit is contained in:
parent
7492c308ad
commit
a1eac9959e
@ -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"))
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user