We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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