Skip to content

Commit 577df15

Browse files
authored
Merge pull request #724 from MetaCell/fix/hfo-146-147-148
Fix/nepyne 146 147 148
2 parents ba6a9d4 + 3edcca4 commit 577df15

1 file changed

Lines changed: 22 additions & 23 deletions

File tree

webapp/redux/reducers/data/tutorial_steps.js

Lines changed: 22 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ const tutorial_steps = [
3131
target: '#newSectionButton',
3232
title: 'Check Cell"s Sections',
3333
content: (
34-
<p>Click on Section to see the sections that make up this imported cell type</p>
34+
<p>Click on Section to see the sections that make up this cell type</p>
3535
)
3636
},
3737
{
@@ -47,7 +47,7 @@ const tutorial_steps = [
4747
content: (
4848
<>
4949
<p>Click on the Populations icon.</p>
50-
<p>You can also find the each sidebar icons as tab in the top panel</p>
50+
<p>You can also find each sidebar icons as a tab in the top panel</p>
5151
</>
5252
)
5353
},
@@ -88,7 +88,7 @@ const tutorial_steps = [
8888
target: 'div[id*="netParamspopParams"][id*="cellType"]',
8989
title: 'Cell Population Creation',
9090
content: (
91-
<p>Select the cell type to the one we imported earlier ("pyr")</p>
91+
<p>Select the cell type to the one we created earlier ("pyr")</p>
9292
// <p>Set the Cell type to the "pyr" cell we imported earlier</p>
9393
),
9494
waitFor: 'click',
@@ -130,7 +130,7 @@ const tutorial_steps = [
130130
)
131131
},
132132
{
133-
target: 'material-icons MuiIcon-root',
133+
target: 'img[src*="d2NetPlot"]',
134134
title: '2D Net Plot Panel',
135135
content: (
136136
<>
@@ -140,7 +140,6 @@ const tutorial_steps = [
140140
<p>Explore moving and reshaping tabs (drag from the tab title)</p>
141141
</>
142142
),
143-
collectionIndex: 2
144143
},
145144
{
146145
target: 'MuiButtonBase-root MuiButton-root MuiButton-contained',
@@ -225,75 +224,75 @@ const tutorial_steps = [
225224
<p>Name the rule "E-&gt;E" (without spaces)</p>
226225
),
227226
},
228-
{ // netParamsconnParamsConnectivityRule0sec
229-
target: 'input[id*="netParamsconnParams"][id*="sec"]',
227+
{
228+
target: 'input[id*="netParamsconnParams"][id*="weight"]',
230229
title: 'Connectivity Rules Creation',
231230
content: (
232231
<>
233-
<p>Add "dend" as new postsynaptic neuron section</p>
232+
<p>Enter 0.005 in Weight of synaptic connection</p>
234233
</>
235234
),
236235
},
237236
{
238-
target: 'button[id^="netParamsconnParams"][id$="sec-button"]',
237+
target: 'input[id*="netParamsconnParams"][id*="probability"]',
239238
title: 'Connectivity Rules Creation',
240239
content: (
241240
<>
242-
<p>Click on "+" to add the value</p>
241+
<p>Enter 0.1 in Probability of connection</p>
243242
</>
244243
),
245244
},
246245
{
247-
target: 'input[id*="netParamsconnParams"][id*="loc"]',
246+
target: 'input[id*="netParamsconnParams"][id*="delay"]',
248247
title: 'Connectivity Rules Creation',
249248
content: (
250249
<>
251-
<p>Enter 0.5 as new postsynaptic neuron location</p>
250+
<p>Enter 5 in Connection delay</p>
252251
</>
253252
),
254253
},
255254
{
256-
target: 'button[id^="netParamsconnParams"][id$="loc-button"]',
255+
target: 'div[id*="netParamsconnParams"][id*="synMech"]',
257256
title: 'Connectivity Rules Creation',
258257
content: (
259258
<>
260-
<p>Click on "+" to add the value</p>
259+
<p>Select "exc" for Synaptic mechanism</p>
261260
</>
262261
),
263262
},
264-
{
265-
target: 'div[id*="netParamsconnParams"][id*="synMech"]',
263+
{ // netParamsconnParamsConnectivityRule0sec
264+
target: 'input[id*="netParamsconnParams"][id*="sec"]',
266265
title: 'Connectivity Rules Creation',
267266
content: (
268267
<>
269-
<p>Select "exc" for Synaptic mechanism</p>
268+
<p>Add "dend" as new postsynaptic neuron section</p>
270269
</>
271270
),
272271
},
273272
{
274-
target: 'input[id*="netParamsconnParams"][id*="probability"]',
273+
target: 'button[id^="netParamsconnParams"][id$="sec-button"]',
275274
title: 'Connectivity Rules Creation',
276275
content: (
277276
<>
278-
<p>Enter 0.1 in Probability of connection</p>
277+
<p>Click on "+" to add the value</p>
279278
</>
280279
),
281280
},
282281
{
283-
target: 'input[id*="netParamsconnParams"][id*="weight"]',
282+
target: 'input[id*="netParamsconnParams"][id*="loc"]',
284283
title: 'Connectivity Rules Creation',
285284
content: (
286285
<>
287-
<p>Enter 0.005 in Weight of synaptic connection</p>
286+
<p>Enter 0.5 as new postsynaptic neuron location</p>
288287
</>
289288
),
290289
},
291290
{
292-
target: 'input[id*="netParamsconnParams"][id*="delay"]',
291+
target: 'button[id^="netParamsconnParams"][id$="loc-button"]',
293292
title: 'Connectivity Rules Creation',
294293
content: (
295294
<>
296-
<p>Enter 5 in Connection delay</p>
295+
<p>Click on "+" to add the value</p>
297296
</>
298297
),
299298
},

0 commit comments

Comments
 (0)