X-Git-Url: https://osm.etsi.org/gitweb/?p=osm%2FUI.git;a=blobdiff_plain;f=skyquake%2Fplugins%2Flaunchpad%2Fsrc%2Finstantiate%2FinstantiateInputParams.jsx;h=6561649b97f93cf94687f333a0faefd11ecf7817;hp=5ffb4bc67e5a6e15643a8666ebf7559056533dea;hb=ab68734c52fb6d413e8241466c4517bd7af2477f;hpb=085377c2211906fb538df175fd139b089d1ca0f5 diff --git a/skyquake/plugins/launchpad/src/instantiate/instantiateInputParams.jsx b/skyquake/plugins/launchpad/src/instantiate/instantiateInputParams.jsx index 5ffb4bc67..6561649b9 100644 --- a/skyquake/plugins/launchpad/src/instantiate/instantiateInputParams.jsx +++ b/skyquake/plugins/launchpad/src/instantiate/instantiateInputParams.jsx @@ -106,16 +106,23 @@ export default class InstantiateInputParams extends Component { inputParametersHTML = (props) => { let inputParameters = props.inputParameters; const handleChange = (i, event) => props.updateInputParam(i, event.target.value); - return inputParameters && inputParameters.map(function(input, i) { - return ( -
-

Input Parameters

-
- -
-
- ) - }) + let nsInputParamsHTML = []; + inputParameters && inputParameters.map(function(input, i) { + nsInputParamsHTML.push( +
+ +
+ ); + }); + var nsinput = ( +
+

NS Input Parameters

+ { + nsInputParamsHTML + } +
+ ); + return nsinput; } nsPlacementGroupsHTML = (props) => { let nsPlacementGroups = props.nsPlacementGroups;