File tree Expand file tree Collapse file tree
webapp/components/definition Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -207,15 +207,15 @@ export default class NetPyNEConnectivityRule extends React.Component {
207207 />
208208 </ NetPyNEField >
209209
210- < NetPyNEField id = "netParams.connParams.loc " className = "listStyle" >
210+ < NetPyNEField id = "netParams.connParams.sec " className = "listStyle" >
211211 < ListComponent
212- model = { `netParams.connParams['${ this . props . name } ']['loc ']` }
212+ model = { `netParams.connParams['${ this . props . name } ']['sec ']` }
213213 />
214214 </ NetPyNEField >
215215
216- < NetPyNEField id = "netParams.connParams.sec " className = "listStyle" >
216+ < NetPyNEField id = "netParams.connParams.loc " className = "listStyle" >
217217 < ListComponent
218- model = { `netParams.connParams['${ this . props . name } ']['sec ']` }
218+ model = { `netParams.connParams['${ this . props . name } ']['loc ']` }
219219 />
220220 </ NetPyNEField >
221221
Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ class NetPyNEStimulationSource extends React.Component {
3232 super ( props ) ;
3333 this . state = {
3434 currentName : props . name ,
35- sourceType : 'IClamp ' ,
35+ sourceType : 'NetStim ' ,
3636 errorMessage : undefined ,
3737 errorDetails : undefined ,
3838 } ;
Original file line number Diff line number Diff line change @@ -42,7 +42,7 @@ export default class NetPyNEStimulationSources extends Component {
4242 }
4343
4444 handleNewStimulationSource ( ) {
45- const defaultStimulationSources = { stim_source : { type : 'IClamp ' } } ;
45+ const defaultStimulationSources = { stim_source : { type : 'NetStim ' } } ;
4646 const key = Object . keys ( defaultStimulationSources ) [ 0 ] ;
4747 const value = defaultStimulationSources [ key ] ;
4848 const model = { ...this . state . value } ;
You can’t perform that action at this time.
0 commit comments