Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions src/components/ChallengeEditor/ChallengeView/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@ import {
REVIEW_TYPES,
PHASE_PRODUCT_CHALLENGE_ID_FIELD,
MULTI_ROUND_CHALLENGE_TEMPLATE_ID,
DS_TRACK_ID
DS_TRACK_ID,
COMMUNITY_APP_URL
} from '../../../config/constants'
import PhaseInput from '../../PhaseInput'
import CheckpointPrizesField from '../CheckpointPrizes-Field'
Expand Down Expand Up @@ -137,7 +138,9 @@ const ChallengeView = ({

<div className={cn(styles.row, styles.topRow)}>
<div className={styles.col}>
<span><span className={styles.fieldTitle}>Challenge Name:</span> {challenge.name}</span>
<span><span className={styles.fieldTitle}>Challenge Name:</span> <a href={`${COMMUNITY_APP_URL}/challenges/${challenge.id}`} target='_blank' rel='noopener noreferrer'>
{challenge.name}
</a></span>
</div>
</div>
{isDataScience && (
Expand Down
Loading