File tree Expand file tree Collapse file tree 3 files changed +16
-3
lines changed
ChallengePane/ChallengeResultItem Expand file tree Collapse file tree 3 files changed +16
-3
lines changed Original file line number Diff line number Diff line change @@ -346,7 +346,11 @@ export class ChallengeDetail extends Component {
346346 this . state . showMore ? "mr-max-h-full" : ""
347347 } `}
348348 >
349- < MarkdownContent markdown = { challenge . description || challenge . blurb } allowPropertyReplacement allowShortCodes />
349+ < MarkdownContent
350+ markdown = { challenge . description || challenge . blurb }
351+ allowPropertyReplacement
352+ allowShortCodes
353+ />
350354 </ div >
351355 { this . state . hasOverflow && (
352356 < button
Original file line number Diff line number Diff line change @@ -137,7 +137,12 @@ export class ChallengeResultItem extends Component {
137137 </ span >
138138 </ div >
139139 ) }
140- < MarkdownContent markdown = { this . props . challenge . description } allowPropertyReplacement allowShortCodes lightMode = { false } />
140+ < MarkdownContent
141+ markdown = { this . props . challenge . description }
142+ allowPropertyReplacement
143+ allowShortCodes
144+ lightMode = { false }
145+ />
141146 < div >
142147 < button
143148 type = "button"
Original file line number Diff line number Diff line change @@ -119,7 +119,11 @@ const ChallengeItem = (props) => {
119119 < FormattedDate value = { parseISO ( props . challenge . created ) } />
120120 </ div >
121121 < div className = "mr-text-white mr-break-words" >
122- < MarkdownContent markdown = { props . challenge . description } allowPropertyReplacement allowShortCodes />
122+ < MarkdownContent
123+ markdown = { props . challenge . description }
124+ allowPropertyReplacement
125+ allowShortCodes
126+ />
123127 </ div >
124128 </ li >
125129 ) ;
You can’t perform that action at this time.
0 commit comments