diff options
author | Parker Berberian <pberberian@iol.unh.edu> | 2019-03-13 17:44:41 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2019-03-13 17:44:41 +0000 |
commit | 8f4ba155af502e9055b222039e2d4ed742adb9ab (patch) | |
tree | 53a9616768bdfd600a4d45a9a0fe9ecc507d2b72 | |
parent | 357ca93d21500d4d5a55f1bdd0550326d424bb26 (diff) | |
parent | 484b542c63bfa0f6178446a1c49023278cd16a1e (diff) |
Merge "Bookings no longer default to 0 days"
-rw-r--r-- | dashboard/src/workflow/forms.py | 4 |
1 files changed, 2 insertions, 2 deletions
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" } ) ) |