Skip to content

Commit ccb69b8

Browse files
committed
PM-1349 Add CA challenge details link to WM
1 parent 754a730 commit ccb69b8

File tree

1 file changed

+5
-2
lines changed
  • src/components/ChallengeEditor/ChallengeView

1 file changed

+5
-2
lines changed

src/components/ChallengeEditor/ChallengeView/index.js

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,8 @@ import {
2222
REVIEW_TYPES,
2323
PHASE_PRODUCT_CHALLENGE_ID_FIELD,
2424
MULTI_ROUND_CHALLENGE_TEMPLATE_ID,
25-
DS_TRACK_ID
25+
DS_TRACK_ID,
26+
COMMUNITY_APP_URL
2627
} from '../../../config/constants'
2728
import PhaseInput from '../../PhaseInput'
2829
import CheckpointPrizesField from '../CheckpointPrizes-Field'
@@ -137,7 +138,9 @@ const ChallengeView = ({
137138

138139
<div className={cn(styles.row, styles.topRow)}>
139140
<div className={styles.col}>
140-
<span><span className={styles.fieldTitle}>Challenge Name:</span> {challenge.name}</span>
141+
<span><span className={styles.fieldTitle}>Challenge Name:</span> <a href={`${COMMUNITY_APP_URL}/challenges/${challenge.id}`} target='_blank' rel='noopener noreferrer'>
142+
{challenge.name}
143+
</a></span>
141144
</div>
142145
</div>
143146
{isDataScience && (

0 commit comments

Comments
 (0)