Signed-off-by: Varun Gupta <varun.gupta1798@gmail.com>
This commit is contained in:
Varun Gupta
2018-10-06 22:36:41 +05:30
committed by Jeffrey Warren
parent 768117a078
commit 09669fe858

View File

@@ -66,13 +66,14 @@ function DefaultHtmlStepUi(_sequencer, options) {
} }
html += "</select>"; html += "</select>";
} else { } else {
let paramVal = step.options[paramName] || inputDesc.default;
html = html =
'<input class="form-control target" type="' + '<input class="form-control target" type="' +
inputDesc.type + inputDesc.type +
'" name="' + '" name="' +
paramName + paramName +
'" value="' + '" value="' +
inputDesc.default + paramVal +
'" placeholder ="' + '" placeholder ="' +
(inputDesc.placeholder || "") + (inputDesc.placeholder || "") +
'">'; '">';