We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c2e927b commit d2cf6faCopy full SHA for d2cf6fa
src/components/ChallengeEditor/ChallengeView/index.js
@@ -102,7 +102,7 @@ const ChallengeView = ({
102
const showCheckpointPrizes = _.get(challenge, 'timelineTemplateId') === MULTI_ROUND_CHALLENGE_TEMPLATE_ID
103
const isDataScience = challenge.trackId === DS_TRACK_ID
104
const useDashboardData = _.find(challenge.metadata, { name: 'show_data_dashboard' })
105
- const useDashboard = useDashboardData ? useDashboardData.value : true
+ const useDashboard = useDashboardData ? (useDashboardData.value === 'true') : false
106
107
return (
108
<div className={styles.wrapper}>
0 commit comments