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.
2 parents 4dd7a25 + 23cfb55 commit e9952f2Copy full SHA for e9952f2
.circleci/config.yml
@@ -81,6 +81,7 @@ workflows:
81
branches:
82
only:
83
- develop
84
+ - update-task-view-n-api
85
86
# Production builds are exectuted only on tagged commits to the
87
# master branch.
src/components/ChallengeEditor/ChallengeView/index.js
@@ -96,7 +96,7 @@ const ChallengeView = ({
96
{
97
challenge.status === 'Draft' && (
98
<div className={styles.button}>
99
- {challenge.legacyId ? (
+ {(challenge.legacyId || isTask) ? (
100
<PrimaryButton text={'Launch'} type={'info'} onClick={onLaunchChallenge} />
101
) : (
102
<Tooltip content={MESSAGE.NO_LEGACY_CHALLENGE}>
0 commit comments