Merge "fix mistral dashbaord workflow execution form bug"

This commit is contained in:
Zuul 2018-08-14 07:38:27 +00:00 committed by Gerrit Code Review
commit ffe113c364
1 changed files with 10 additions and 9 deletions

View File

@ -45,6 +45,7 @@ class ExecuteForm(forms.SelfHandlingForm):
for entry in list.split(","):
label, _, default = entry.partition("=")
label = label.strip()
if label != '':
self.workflow_parameters.append(label)
if default == "None":
default = None