Skip to content

Commit 278ed99

Browse files
authored
Merge branch 'master' into develop
2 parents b693721 + a372512 commit 278ed99

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/components/ChallengeEditor/index.js

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1612,7 +1612,10 @@ class ChallengeEditor extends Component {
16121612
<div className={styles.button}>
16131613
<OutlineButton text={isSaving ? 'Saving...' : 'Save'} type={'success'} onClick={this.onSaveChallenge} />
16141614
</div>
1615-
{isTask && (
1615+
{(
1616+
isTask &&
1617+
!preventCopilotFromActivatingTask
1618+
) && (
16161619
<div className={styles.button}>
16171620
<Tooltip content={MESSAGE.MARK_COMPLETE}>
16181621
<PrimaryButton text={'Mark Complete'} type={'success'} onClick={this.openCloseTaskConfirmation} />

0 commit comments

Comments
 (0)