Skip to content

Commit 6da9e25

Browse files
author
vikasrohit
authored
Merge pull request #966 from topcoder-platform/develop
Production update - Fixed link, public specs validation error
2 parents 2bd8368 + a0f3b60 commit 6da9e25

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/components/ChallengeEditor/TextEditor-Field/index.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,9 @@ class TextEditorField extends Component {
5252
readOnly={readOnly}
5353
/>
5454
</div>)}
55+
{challenge.submitTriggered && !challenge.description && (
56+
<div className={styles.error}>Public Specification is required</div>
57+
)}
5558
{!readOnly && shouldShowPrivateDescription && !showShowPrivateDescriptionField && (<div className={styles.button} onClick={this.addNewPrivateDescription}>
5659
<PrimaryButton text={'Add private specification'} type={'info'} />
5760
</div>)}
@@ -73,9 +76,6 @@ class TextEditorField extends Component {
7376
/>
7477
</div>
7578
)}
76-
{challenge.submitTriggered && !challenge.description && (
77-
<div className={styles.error}>Public Specification is required</div>
78-
)}
7979
<TagsField
8080
challengeTags={challengeTagsFiltered}
8181
challenge={challenge}

src/components/Sidebar/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ const Sidebar = ({
2020
All Work
2121
</div>
2222
</Link>
23-
<a href='https://github.com/topcoder-platform/work-manager/issues/newsid' target='_blank' rel='noopener noreferrer' className='chameleon-feedback'>
23+
<a href='https://github.com/topcoder-platform/work-manager/issues/new' target='_blank' rel='noopener noreferrer' className='chameleon-feedback'>
2424
<div className={cn(styles.homeLink, { [styles.active]: !projectId })}>
2525
Give Application Feedback
2626
</div>

0 commit comments

Comments
 (0)