summaryrefslogtreecommitdiffstats
path: root/dashboard/src
diff options
context:
space:
mode:
authorParker Berberian <pberberian@iol.unh.edu>2019-03-13 17:44:41 +0000
committerGerrit Code Review <gerrit@opnfv.org>2019-03-13 17:44:41 +0000
commit8f4ba155af502e9055b222039e2d4ed742adb9ab (patch)
tree53a9616768bdfd600a4d45a9a0fe9ecc507d2b72 /dashboard/src
parent357ca93d21500d4d5a55f1bdd0550326d424bb26 (diff)
parent484b542c63bfa0f6178446a1c49023278cd16a1e (diff)
Merge "Bookings no longer default to 0 days"
Diffstat (limited to 'dashboard/src')
-rw-r--r--dashboard/src/workflow/forms.py4
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"
}
)
)