File tree Expand file tree Collapse file tree 2 files changed +28
-2
lines changed
src/shared/components/challenge-detail/Specification Expand file tree Collapse file tree 2 files changed +28
-2
lines changed Original file line number Diff line number Diff line change @@ -244,7 +244,7 @@ workflows:
244
244
filters :
245
245
branches :
246
246
only :
247
- - seo-fix
247
+ - feature/private-spec
248
248
# This is beta env for production soft releases
249
249
- " build-prod-beta " :
250
250
context : org-global
@@ -260,7 +260,7 @@ workflows:
260
260
branches :
261
261
only :
262
262
- develop
263
- - listing-search
263
+ - feature/private-spec
264
264
# Production builds are exectuted
265
265
# when PR is merged to the master
266
266
# Don't change anything in this configuration
Original file line number Diff line number Diff line change @@ -198,6 +198,19 @@ export default function ChallengeDetailsView(props) {
198
198
/>
199
199
)
200
200
}
201
+ {
202
+ privateDescription && (
203
+ < React . Fragment >
204
+ < h2 >
205
+ Registered User Additional Information
206
+ </ h2 >
207
+ < SpecificationComponent
208
+ bodyText = { privateDescription }
209
+ format = { descriptionFormat }
210
+ />
211
+ </ React . Fragment >
212
+ )
213
+ }
201
214
</ article >
202
215
)
203
216
}
@@ -227,6 +240,19 @@ export default function ChallengeDetailsView(props) {
227
240
/>
228
241
)
229
242
}
243
+ {
244
+ privateDescription && (
245
+ < React . Fragment >
246
+ < h2 >
247
+ Registered User Additional Information
248
+ </ h2 >
249
+ < SpecificationComponent
250
+ bodyText = { privateDescription }
251
+ format = { descriptionFormat }
252
+ />
253
+ </ React . Fragment >
254
+ )
255
+ }
230
256
< p />
231
257
< p styleName = "note" >
232
258
Please read the challenge specification carefully and
You can’t perform that action at this time.
0 commit comments