Skip to content

Commit ca37a24

Browse files
committed
step subtask in markdown
Signed-off-by: shmck <[email protected]>
1 parent 769f7fa commit ca37a24

File tree

1 file changed

+3
-1
lines changed
  • web-app/src/containers/Tutorial/components

1 file changed

+3
-1
lines changed

Diff for: web-app/src/containers/Tutorial/components/Step.tsx

+3-1
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,9 @@ const Step = (props: Props) => {
6363
return (
6464
<li key={subtask.name} css={styles.subtask}>
6565
<TestStatusIcon size="xs" status={subtask.status} />
66-
<span style={{ marginLeft: '0.5rem' }}>{subtask.name}</span>
66+
<span style={{ marginLeft: '0.5rem' }}>
67+
<Markdown>{subtask.name}</Markdown>
68+
</span>
6769
</li>
6870
)
6971
})}

0 commit comments

Comments
 (0)