Skip to content

Commit fa48bc2

Browse files
authored
Merge pull request #7088 from topcoder-platform/develop
PROD - Topgear challenges - Submissions Guidelines Text needs to be updated in submit page
2 parents 089bb68 + 0b0ffb0 commit fa48bc2

File tree

4 files changed

+25
-4
lines changed

4 files changed

+25
-4
lines changed

src/shared/components/SubmissionPage/FilestackFilePicker/index.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ class FilestackFilePicker extends React.Component {
177177
</p>
178178
</div>
179179
<div
180-
styleName={`file-picker ${error ? 'error' : ''} ${dragged ? 'drag' : ''}`}
180+
styleName={`file-picker ${error ? 'error' : ''} ${dragged ? 'drag' : ''} ${isChallengeBelongToTopgearGroup ? 'topgear' : ''}`}
181181
>
182182
{
183183
!fileName && !isChallengeBelongToTopgearGroup && (

src/shared/components/SubmissionPage/FilestackFilePicker/styles.scss

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,10 @@
2525
position: relative;
2626
justify-content: space-around;
2727

28+
&.topgear {
29+
justify-content: flex-start;
30+
}
31+
2832
@include xs-to-sm {
2933
min-height: 150px;
3034
justify-content: space-between;

src/shared/components/SubmissionPage/Submit/index.jsx

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ class Submit extends React.Component {
171171
<div>
172172
<ol styleName="wipro-steps">
173173
<li>Upload the outcome/asset/deliverable of the challenge to the repository
174-
(e.g OneDrive/teams folder) as specified by the project team/challenge creator.
174+
(<strong styleName="wipro-bold">Wipro SharePoint folder</strong>) as specified by the project team/challenge creator.
175175
</li>
176176
<li>Copy the link of the outcome/asset/deliverable that was uploaded.
177177
Enter this link in the text box and click on “SET URL”.
@@ -186,13 +186,22 @@ class Submit extends React.Component {
186186
<span styleName="wipro-red">Do not submit any irrelevant links</span>&nbsp;
187187
as the submission link is proof of the work done.
188188
</div>
189+
<p styleName="wipro-paragraph">
190+
Note: All deliverables/outcomes should be uploaded to the Wipro SharePoint
191+
directory <strong styleName="wipro-bold">ONLY</strong>. For work done directly on customer environment and
192+
involving a customer SharePoint/drive/folder link, create a word document and include a
193+
brief summary of the work done and list the deliverables/assets created along
194+
with the link to the customer SharePoint/drive/folder link and upload the word
195+
document to a Wipro SharePoint folder. And submit the link to this Word document
196+
as the submission link.
197+
</p>
189198
</div>
190199
)
191200
: `Please follow the instructions on the Challenge Details page regarding
192201
what your submission should contain and how it should be organized.`;
193202
const troubleInstruction = isChallengeBelongToTopgearGroup
194-
? `If you are having trouble uploading your file, please raise a Service
195-
Now (SNOW) ticket under the TopGear category.`
203+
? `If you are having trouble with the submission or have any queries, please raise a Service
204+
Now (SNOW) ticket under the TopGear category.`
196205
: (
197206
<span>
198207
If you are having trouble uploading your file, please send your submission

src/shared/components/SubmissionPage/Submit/styles.scss

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -302,6 +302,14 @@
302302
padding-top: 20px;
303303
}
304304

305+
.wipro-paragraph {
306+
padding-top: 20px;
307+
}
308+
305309
.wipro-red {
306310
color: red;
307311
}
312+
313+
.wipro-bold {
314+
font-weight: bold;
315+
}

0 commit comments

Comments
 (0)