back-testing-react 2.0.9 → 2.0.10

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "back-testing-react",
3
- "version": "2.0.9",
3
+ "version": "2.0.10",
4
4
  "type": "module",
5
5
  "description": "Parametric back testing application developed by NormanMax Insurance Solutions",
6
6
  "main": "dist/index.js",
@@ -176,9 +176,9 @@ const InputProxyStep = forwardRef<WizardStep, InputProxyStepProps>((props,ref) =
176
176
  proxyList.push(wizardProxies[i])
177
177
  }
178
178
  proxyList.push(newProxy);
179
- setWizardProxies(proxyList);
180
- setSelectedProxy(newProxy);
181
- setExpanded('panel'+(newProxy.refId));
179
+ //setWizardProxies(proxyList);
180
+ //setSelectedProxy(newProxy);
181
+ //setExpanded('panel'+(newProxy.refId));
182
182
  }
183
183
 
184
184
  function deleteProxy(refId: string){
@@ -334,7 +334,7 @@ const InputProxyStep = forwardRef<WizardStep, InputProxyStepProps>((props,ref) =
334
334
  <Typography color="inherit"><b>Add Proxy</b></Typography>
335
335
  <em>Add and configure a new windspeed proxy</em>
336
336
  </React.Fragment>}>
337
- <Button variant='contained' color='secondary'size='small' sx={{float:'right',marginTop:'12.5px',minHeight:'25px',minWidth:'25px',padding:0,color:'rgb(0, 0, 102)'}}><FontAwesomeIcon icon={faPlus} size="xl"/></Button>
337
+ <Button onClick={() => addNewProxy()} variant='contained' color='secondary'size='small' sx={{float:'right',marginTop:'12.5px',minHeight:'25px',minWidth:'25px',padding:0,color:'rgb(0, 0, 102)'}}><FontAwesomeIcon icon={faPlus} size="xl"/></Button>
338
338
  </HtmlTooltip>
339
339
  </Typography>
340
340
  </CardContent>