Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Fix/displayed hints#495

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to ourterms of service andprivacy statement. We’ll occasionally send you account related emails.

Already on GitHub?Sign in to your account

Merged
ShMcK merged 3 commits intomasterfromfix/displayed-hints
Jun 14, 2021
Merged
Show file tree
Hide file tree
Changes fromall commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions.vscodeignore
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -22,11 +22,11 @@ scripts/**
.prettierrc.js
jest.config.js

##Docs
##Other
docs
releases
other
DEV.md

## Tests
build/test/**

## Docs
DEV.md
2 changes: 1 addition & 1 deletionpackage.json
View file
Open in desktop
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
{
"name":"coderoad",
"version":"0.14.3",
"version":"0.14.4",
"description":"Play interactive coding tutorials in your editor",
"keywords": [
"tutorial",
Expand Down
2 changes: 1 addition & 1 deletionweb-app/package.json
View file
Open in desktop
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
{
"name": "coderoad-app",
"version": "0.14.3",
"version": "0.14.4",
"private": true,
"scripts": {
"build": "react-app-rewired build",
Expand Down
3 changes: 2 additions & 1 deletionweb-app/src/containers/Tutorial/components/Steps.tsx
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -25,6 +25,7 @@ const Steps = (props: Props) => {
if (!step) {
return null
}

return (
<div key={step.id}>
<Step
Expand All@@ -34,7 +35,7 @@ const Steps = (props: Props) => {
content={step.content}
subtasks={step.subtasks}
/>
<Hints hints={step.hints || []} />
{['ACTIVE', 'COMPLETE'].includes(step.status) &&<Hints hints={step.hints || []} />}
</div>
)
})}
Expand Down

[8]ページ先頭

©2009-2025 Movatter.jp