mirror of
https://github.com/pretix/pretix.git
synced 2026-05-05 15:14:04 +00:00
Fix handling negative values in rrule (e.g. batch-adding subevents) (#5476)
This commit is contained in:
committed by
GitHub
parent
3b30553880
commit
b8b89f3040
@@ -67,7 +67,8 @@ class RRuleForm(forms.Form):
|
||||
)
|
||||
count = forms.IntegerField(
|
||||
label=_('Number of repetitions'),
|
||||
initial=10
|
||||
initial=10,
|
||||
min_value=1,
|
||||
)
|
||||
until = forms.DateField(
|
||||
widget=forms.DateInput(
|
||||
|
||||
Reference in New Issue
Block a user