From 484b542c63bfa0f6178446a1c49023278cd16a1e Mon Sep 17 00:00:00 2001 From: Sawyer Bergeron Date: Wed, 13 Mar 2019 13:35:46 -0400 Subject: Bookings no longer default to 0 days This commit rectifies bookings defaulting to (and allowing) a length of 0 on the booking meta step Change-Id: I5a9a516fc7cb2b5e9f30ec1b4ad93f7c31d1acbc Signed-off-by: Sawyer Bergeron --- dashboard/src/workflow/forms.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'dashboard/src') diff --git a/dashboard/src/workflow/forms.py b/dashboard/src/workflow/forms.py index 03940d8..b40713f 100644 --- a/dashboard/src/workflow/forms.py +++ b/dashboard/src/workflow/forms.py @@ -186,9 +186,9 @@ class BookingMetaForm(forms.Form): widget=NumberInput( attrs={ "type": "range", - 'min': "0", + 'min': "1", "max": "21", - "value": "0" + "value": "1" } ) ) -- cgit 1.2.3-korg