Fix handling negative values in rrule (e.g. batch-adding subevents) (#5476)

This commit is contained in:
Richard Schreiber
2025-09-22 08:08:34 +02:00
committed by GitHub
parent 3b30553880
commit b8b89f3040
2 changed files with 4 additions and 3 deletions

View File

@@ -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(