Skip to content

Commit 96d2774

Browse files
committed
Fix challenge checkbox
1 parent 26cc44a commit 96d2774

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/ChallengeEditor/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1647,7 +1647,7 @@ class ChallengeEditor extends Component {
16471647
const isChallengeType = challenge.typeId === CHALLENGE_TYPE_ID
16481648
const showRoundType = isDesignChallenge && isChallengeType
16491649
const showCheckpointPrizes = challenge.timelineTemplateId === MULTI_ROUND_CHALLENGE_TEMPLATE_ID
1650-
const showDashBoard = (challenge.trackId === DS_TRACK_ID && isChallengeType) || (isDevChallenge && isMM)
1650+
const showDashBoard = (challenge.trackId === DS_TRACK_ID && isChallengeType) || (isDevChallenge && isMM) || (isDevChallenge && isChallengeType)
16511651
const useDashboardData = _.find(challenge.metadata, { name: 'show_data_dashboard' })
16521652

16531653
const useDashboard = useDashboardData

0 commit comments

Comments
 (0)