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 b693721 + a372512 commit 278ed99Copy full SHA for 278ed99
src/components/ChallengeEditor/index.js
@@ -1612,7 +1612,10 @@ class ChallengeEditor extends Component {
1612
<div className={styles.button}>
1613
<OutlineButton text={isSaving ? 'Saving...' : 'Save'} type={'success'} onClick={this.onSaveChallenge} />
1614
</div>
1615
- {isTask && (
+ {(
1616
+ isTask &&
1617
+ !preventCopilotFromActivatingTask
1618
+ ) && (
1619
1620
<Tooltip content={MESSAGE.MARK_COMPLETE}>
1621
<PrimaryButton text={'Mark Complete'} type={'success'} onClick={this.openCloseTaskConfirmation} />
0 commit comments