feat: display instructions on frontend projects (#43862)
This commit is contained in:
committed by
GitHub
parent
f3e1c59c92
commit
9bb1919e83
@ -138,6 +138,7 @@ class Project extends Component<ProjectProps> {
|
|||||||
forumTopicId,
|
forumTopicId,
|
||||||
title,
|
title,
|
||||||
description,
|
description,
|
||||||
|
instructions,
|
||||||
superBlock,
|
superBlock,
|
||||||
block,
|
block,
|
||||||
translationPending
|
translationPending
|
||||||
@ -175,7 +176,10 @@ class Project extends Component<ProjectProps> {
|
|||||||
>
|
>
|
||||||
{title}
|
{title}
|
||||||
</ChallengeTitle>
|
</ChallengeTitle>
|
||||||
<ChallengeDescription description={description} />
|
<ChallengeDescription
|
||||||
|
description={description}
|
||||||
|
instructions={instructions}
|
||||||
|
/>
|
||||||
<SolutionForm
|
<SolutionForm
|
||||||
challengeType={challengeType}
|
challengeType={challengeType}
|
||||||
description={description}
|
description={description}
|
||||||
@ -216,6 +220,7 @@ export const query = graphql`
|
|||||||
forumTopicId
|
forumTopicId
|
||||||
title
|
title
|
||||||
description
|
description
|
||||||
|
instructions
|
||||||
challengeType
|
challengeType
|
||||||
helpCategory
|
helpCategory
|
||||||
superBlock
|
superBlock
|
||||||
|
Reference in New Issue
Block a user