4 files changed +8
-7
lines changed Original file line number Diff line number Diff line change @@ -22,11 +22,11 @@ scripts/**
22
22
.prettierrc.js
23
23
jest.config.js
24
24
25
- # # Docs
25
+ # # Other
26
26
docs
27
+ releases
28
+ other
29
+ DEV.md
27
30
28
31
# # Tests
29
32
build /test /**
30
-
31
- # # Docs
32
- DEV.md
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " coderoad" ,
3
- "version" : " 0.14.3 " ,
3
+ "version" : " 0.14.4 " ,
4
4
"description" : " Play interactive coding tutorials in your editor" ,
5
5
"keywords" : [
6
6
" tutorial" ,
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " coderoad-app" ,
3
- "version" : " 0.14.3 " ,
3
+ "version" : " 0.14.4 " ,
4
4
"private" : true ,
5
5
"scripts" : {
6
6
"build" : " react-app-rewired build" ,
Original file line number Diff line number Diff line change @@ -25,6 +25,7 @@ const Steps = (props: Props) => {
25
25
if ( ! step ) {
26
26
return null
27
27
}
28
+
28
29
return (
29
30
< div key = { step . id } >
30
31
< Step
@@ -34,7 +35,7 @@ const Steps = (props: Props) => {
34
35
content = { step . content }
35
36
subtasks = { step . subtasks }
36
37
/>
37
- < Hints hints = { step . hints || [ ] } />
38
+ { [ 'ACTIVE' , 'COMPLETE' ] . includes ( step . status ) && < Hints hints = { step . hints || [ ] } /> }
38
39
</ div >
39
40
)
40
41
} ) }
0 commit comments