Skip to content

Commit b322ad4

Browse files
committed
netpyne-139 Fix missing steps in tutorial 2
1 parent 74d640c commit b322ad4

2 files changed

Lines changed: 37 additions & 1 deletion

File tree

webapp/components/topbar/dialogs/ImportCellParams.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -114,6 +114,7 @@ class ImportCellParams extends React.Component {
114114
>
115115
<Box mb={1}>
116116
<TextField
117+
id="importCellParamsRuleLabel"
117118
variant="filled"
118119
value={label}
119120
fullWidth
@@ -124,6 +125,7 @@ class ImportCellParams extends React.Component {
124125

125126
<NetPyNEField id="netParams.importCellParams.cellName" className={classes.textField}>
126127
<TextField
128+
id="importCellParamsCellName"
127129
variant="filled"
128130
fullWidth
129131
value={cellName}
@@ -200,6 +202,7 @@ class ImportCellParams extends React.Component {
200202
<Grid item>
201203
<NetPyNEField id="netParams.importCellParams.compileMod">
202204
<Checkbox
205+
id="importCellParamsCompileMod"
203206
fullWidth
204207
noBackground
205208
checked={compileMod}

webapp/redux/reducers/data/tutorial2_steps.js

Lines changed: 34 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,28 @@ const tutorial2_steps = [
2323
</div>
2424
)
2525
},
26+
{
27+
target: '#importCellParamsRuleLabel',
28+
title: (
29+
<div>Cell Creation</div>
30+
),
31+
content: (
32+
<div>
33+
<p>Change the cell rule label to "PTcell"</p>
34+
</div>
35+
)
36+
},
37+
{
38+
target: '#importCellParamsCellName',
39+
title: (
40+
<div>Cell Creation</div>
41+
),
42+
content: (
43+
<div>
44+
<p>Change the template/cell name to "PTcell"</p>
45+
</div>
46+
)
47+
},
2648
{
2749
target: '#importCellParamsFileName',
2850
title: (
@@ -52,7 +74,18 @@ const tutorial2_steps = [
5274
content: (
5375
<div>
5476
<p>Click on the folder icon to select the folder containing the "mod" file:</p>
55-
<p>"NetPyNE tutorials &gt; netpyne_workspace-master &gt; mod</p>
77+
<p>"NetPyNE-UI &gt; workspace &gt; mod</p>
78+
</div>
79+
)
80+
},
81+
{
82+
target: '#importCellParamsCompileMod',
83+
title: (
84+
<div>Cell Creation</div>
85+
),
86+
content: (
87+
<div>
88+
<p>Activate the compilation of mod files</p>
5689
</div>
5790
)
5891
},

0 commit comments

Comments
 (0)