Skip to content
Snippets Groups Projects
Commit 82aea5ce authored by Alexa Valentová's avatar Alexa Valentová
Browse files

fix form max

parent 7793eeee
No related branches found
No related tags found
No related merge requests found
Pipeline #17106 passed
...@@ -11,7 +11,7 @@ class TimeOnlyForm(forms.Form): ...@@ -11,7 +11,7 @@ class TimeOnlyForm(forms.Form):
label="Minuty", label="Minuty",
validators=[ validators=[
MinValueValidator(limit_value=0), MinValueValidator(limit_value=0),
MaxValueValidator(limit_value=60), MaxValueValidator(limit_value=360),
], ],
) )
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment