Skip to content

Commit e9952f2

Browse files
committed
Merge branch 'update-task-view-n-api' of github.com:topcoder-platform/work-manager into update-task-view-n-api
2 parents 4dd7a25 + 23cfb55 commit e9952f2

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

.circleci/config.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,7 @@ workflows:
8181
branches:
8282
only:
8383
- develop
84+
- update-task-view-n-api
8485

8586
# Production builds are exectuted only on tagged commits to the
8687
# master branch.

src/components/ChallengeEditor/ChallengeView/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ const ChallengeView = ({
9696
{
9797
challenge.status === 'Draft' && (
9898
<div className={styles.button}>
99-
{challenge.legacyId ? (
99+
{(challenge.legacyId || isTask) ? (
100100
<PrimaryButton text={'Launch'} type={'info'} onClick={onLaunchChallenge} />
101101
) : (
102102
<Tooltip content={MESSAGE.NO_LEGACY_CHALLENGE}>

0 commit comments

Comments
 (0)