Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 769f7fa commit ca37a24Copy full SHA for ca37a24
web-app/src/containers/Tutorial/components/Step.tsx
@@ -63,7 +63,9 @@ const Step = (props: Props) => {
63
return (
64
<li key={subtask.name} css={styles.subtask}>
65
<TestStatusIcon size="xs" status={subtask.status} />
66
- <span style={{ marginLeft: '0.5rem' }}>{subtask.name}</span>
+ <span style={{ marginLeft: '0.5rem' }}>
67
+ <Markdown>{subtask.name}</Markdown>
68
+ </span>
69
</li>
70
)
71
})}
0 commit comments