added textarea support

This commit is contained in:
mrkrk 2024-09-13 20:38:59 +03:00 committed by GitHub
parent 091b0a7968
commit 1a8f3e2980
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -53,6 +53,7 @@ class TextQuestion(BaseQuestion):
validator: TextValidator | None = None
min_length: int | None = None
max_length: int | None = None
textarea: bool = False
@field_validator("min_length")
@classmethod