X-Git-Url: https://osm.etsi.org/gitweb/?a=blobdiff_plain;f=skyquake%2Fplugins%2Flaunchpad%2Fsrc%2Finstantiate%2FinstantiateInputParams.jsx;fp=skyquake%2Fplugins%2Flaunchpad%2Fsrc%2Finstantiate%2FinstantiateInputParams.jsx;h=9d7b7ebce924da90970c967ab5fdbe53c3cfc50c;hb=e6a5e4fdeac339f87e2d4153f6cbba6c46a3e844;hp=6273d8cab21fe58b161a82c644cdd0e5c24bc20f;hpb=706d84720cce4449aabc931edd3a928d9d86590d;p=osm%2FUI.git diff --git a/skyquake/plugins/launchpad/src/instantiate/instantiateInputParams.jsx b/skyquake/plugins/launchpad/src/instantiate/instantiateInputParams.jsx index 6273d8cab..9d7b7ebce 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;