File tree Expand file tree Collapse file tree 4 files changed +8
-7
lines changed
src/containers/Tutorial/components Expand file tree Collapse file tree 4 files changed +8
-7
lines changed Original file line number Diff line number Diff line change @@ -22,11 +22,11 @@ scripts/**
2222.prettierrc.js
2323jest.config.js
2424
25- # # Docs
25+ # # Other
2626docs
27+ releases
28+ other
29+ DEV.md
2730
2831# # Tests
2932build /test /**
30-
31- # # Docs
32- DEV.md
Original file line number Diff line number Diff line change 11{
22 "name" : " coderoad" ,
3- "version" : " 0.14.3 " ,
3+ "version" : " 0.14.4 " ,
44 "description" : " Play interactive coding tutorials in your editor" ,
55 "keywords" : [
66 " tutorial" ,
Original file line number Diff line number Diff line change 11{
22 "name" : " coderoad-app" ,
3- "version" : " 0.14.3 " ,
3+ "version" : " 0.14.4 " ,
44 "private" : true ,
55 "scripts" : {
66 "build" : " react-app-rewired build" ,
Original file line number Diff line number Diff line change @@ -25,6 +25,7 @@ const Steps = (props: Props) => {
2525 if ( ! step ) {
2626 return null
2727 }
28+
2829 return (
2930 < div key = { step . id } >
3031 < Step
@@ -34,7 +35,7 @@ const Steps = (props: Props) => {
3435 content = { step . content }
3536 subtasks = { step . subtasks }
3637 />
37- < Hints hints = { step . hints || [ ] } />
38+ { [ 'ACTIVE' , 'COMPLETE' ] . includes ( step . status ) && < Hints hints = { step . hints || [ ] } /> }
3839 </ div >
3940 )
4041 } ) }
You can’t perform that action at this time.
0 commit comments