Skip to content

PROD - Topgear challenges - Submissions Guidelines Text needs to be updated in submit page #7088

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 8 commits into from
Apr 2, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ class FilestackFilePicker extends React.Component {
</p>
</div>
<div
styleName={`file-picker ${error ? 'error' : ''} ${dragged ? 'drag' : ''}`}
styleName={`file-picker ${error ? 'error' : ''} ${dragged ? 'drag' : ''} ${isChallengeBelongToTopgearGroup ? 'topgear' : ''}`}
>
{
!fileName && !isChallengeBelongToTopgearGroup && (
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,10 @@
position: relative;
justify-content: space-around;

&.topgear {
justify-content: flex-start;
}

@include xs-to-sm {
min-height: 150px;
justify-content: space-between;
Expand Down
15 changes: 12 additions & 3 deletions src/shared/components/SubmissionPage/Submit/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ class Submit extends React.Component {
<div>
<ol styleName="wipro-steps">
<li>Upload the outcome/asset/deliverable of the challenge to the repository
(e.g OneDrive/teams folder) as specified by the project team/challenge creator.
(<strong styleName="wipro-bold">Wipro SharePoint folder</strong>) as specified by the project team/challenge creator.
</li>
<li>Copy the link of the outcome/asset/deliverable that was uploaded.
Enter this link in the text box and click on “SET URL”.
Expand All @@ -186,13 +186,22 @@ class Submit extends React.Component {
<span styleName="wipro-red">Do not submit any irrelevant links</span>&nbsp;
as the submission link is proof of the work done.
</div>
<p styleName="wipro-paragraph">
Note: All deliverables/outcomes should be uploaded to the Wipro SharePoint
directory <strong styleName="wipro-bold">ONLY</strong>. For work done directly on customer environment and
involving a customer SharePoint/drive/folder link, create a word document and include a
brief summary of the work done and list the deliverables/assets created along
with the link to the customer SharePoint/drive/folder link and upload the word
document to a Wipro SharePoint folder. And submit the link to this Word document
as the submission link.
</p>
</div>
)
: `Please follow the instructions on the Challenge Details page regarding
what your submission should contain and how it should be organized.`;
const troubleInstruction = isChallengeBelongToTopgearGroup
? `If you are having trouble uploading your file, please raise a Service
Now (SNOW) ticket under the TopGear category.`
? `If you are having trouble with the submission or have any queries, please raise a Service
Now (SNOW) ticket under the TopGear category.`
: (
<span>
If you are having trouble uploading your file, please send your submission
Expand Down
8 changes: 8 additions & 0 deletions src/shared/components/SubmissionPage/Submit/styles.scss
Original file line number Diff line number Diff line change
Expand Up @@ -302,6 +302,14 @@
padding-top: 20px;
}

.wipro-paragraph {
padding-top: 20px;
}

.wipro-red {
color: red;
}

.wipro-bold {
font-weight: bold;
}