From 44c20cfc1280e4205ec1aafffca575b5fea97f0f Mon Sep 17 00:00:00 2001 From: rishabhtc Date: Tue, 23 Sep 2025 21:26:29 +0530 Subject: [PATCH 1/9] Fixed CSS style issue --- src/shared/components/challenge-detail/Header/style.scss | 4 ++++ src/shared/components/tco/scoreboard/Header/style.scss | 5 +++++ 2 files changed, 9 insertions(+) diff --git a/src/shared/components/challenge-detail/Header/style.scss b/src/shared/components/challenge-detail/Header/style.scss index 920ba155e7..d75b659b72 100644 --- a/src/shared/components/challenge-detail/Header/style.scss +++ b/src/shared/components/challenge-detail/Header/style.scss @@ -183,6 +183,10 @@ .datasci-accent-color { color: $tc-orange; } + + .data-science-accent-color { + color: $tc-orange; + } } @mixin design-accent-btm-border { diff --git a/src/shared/components/tco/scoreboard/Header/style.scss b/src/shared/components/tco/scoreboard/Header/style.scss index 6fb22b5fbb..cd45e46c2f 100644 --- a/src/shared/components/tco/scoreboard/Header/style.scss +++ b/src/shared/components/tco/scoreboard/Header/style.scss @@ -56,6 +56,11 @@ .datasci-accent-color { color: $tc-orange; } + + .data-science-accent-color { + color: $tc-orange; + } + } @mixin design-accent-btm-border { From 8e25fa288ec29dbfc6b7b65aed3cf7aee5393f3f Mon Sep 17 00:00:00 2001 From: rishabhtc Date: Tue, 23 Sep 2025 22:17:59 +0530 Subject: [PATCH 2/9] Removed empty line --- src/shared/components/tco/scoreboard/Header/style.scss | 1 - 1 file changed, 1 deletion(-) diff --git a/src/shared/components/tco/scoreboard/Header/style.scss b/src/shared/components/tco/scoreboard/Header/style.scss index cd45e46c2f..4b166749b9 100644 --- a/src/shared/components/tco/scoreboard/Header/style.scss +++ b/src/shared/components/tco/scoreboard/Header/style.scss @@ -60,7 +60,6 @@ .data-science-accent-color { color: $tc-orange; } - } @mixin design-accent-btm-border { From b96535359c02d7ea500424ba76f729a09bcd9cba Mon Sep 17 00:00:00 2001 From: rishabhtc Date: Wed, 24 Sep 2025 15:35:34 +0530 Subject: [PATCH 3/9] deploying branch for testing in dev --- .circleci/config.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.circleci/config.yml b/.circleci/config.yml index 3614f76cc9..e465debb7b 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -360,6 +360,7 @@ workflows: - develop - pm-1346 - pm-1358_1 + - ps-411-css-issue # This is alternate dev env for parallel testing # Deprecate this workflow due to beta env shutdown # https://topcoder.atlassian.net/browse/CORE-251 From 69058065491021c8f1ddf9dd7c42841f2ba31e2e Mon Sep 17 00:00:00 2001 From: rishabhtc Date: Wed, 24 Sep 2025 16:30:26 +0530 Subject: [PATCH 4/9] Removed branch from config --- .circleci/config.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index e465debb7b..3614f76cc9 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -360,7 +360,6 @@ workflows: - develop - pm-1346 - pm-1358_1 - - ps-411-css-issue # This is alternate dev env for parallel testing # Deprecate this workflow due to beta env shutdown # https://topcoder.atlassian.net/browse/CORE-251 From 6d516c35ab1a96108233c95d19a0eda018d05ab3 Mon Sep 17 00:00:00 2001 From: rishabhtc Date: Wed, 24 Sep 2025 17:21:53 +0530 Subject: [PATCH 5/9] Undo the fix to test --- .circleci/config.yml | 1 + src/shared/components/challenge-detail/Header/style.scss | 4 ---- src/shared/components/tco/scoreboard/Header/style.scss | 4 ---- 3 files changed, 1 insertion(+), 8 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 3614f76cc9..e465debb7b 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -360,6 +360,7 @@ workflows: - develop - pm-1346 - pm-1358_1 + - ps-411-css-issue # This is alternate dev env for parallel testing # Deprecate this workflow due to beta env shutdown # https://topcoder.atlassian.net/browse/CORE-251 diff --git a/src/shared/components/challenge-detail/Header/style.scss b/src/shared/components/challenge-detail/Header/style.scss index d75b659b72..920ba155e7 100644 --- a/src/shared/components/challenge-detail/Header/style.scss +++ b/src/shared/components/challenge-detail/Header/style.scss @@ -183,10 +183,6 @@ .datasci-accent-color { color: $tc-orange; } - - .data-science-accent-color { - color: $tc-orange; - } } @mixin design-accent-btm-border { diff --git a/src/shared/components/tco/scoreboard/Header/style.scss b/src/shared/components/tco/scoreboard/Header/style.scss index 4b166749b9..6fb22b5fbb 100644 --- a/src/shared/components/tco/scoreboard/Header/style.scss +++ b/src/shared/components/tco/scoreboard/Header/style.scss @@ -56,10 +56,6 @@ .datasci-accent-color { color: $tc-orange; } - - .data-science-accent-color { - color: $tc-orange; - } } @mixin design-accent-btm-border { From 94e3773bfe3f8017a6e5649ed2720b84ee8d39b7 Mon Sep 17 00:00:00 2001 From: rishabhtc Date: Wed, 24 Sep 2025 17:49:56 +0530 Subject: [PATCH 6/9] Re-apply the fix --- .circleci/config.yml | 1 - src/shared/components/challenge-detail/Header/style.scss | 4 ++++ src/shared/components/tco/scoreboard/Header/style.scss | 4 ++++ 3 files changed, 8 insertions(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index e465debb7b..3614f76cc9 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -360,7 +360,6 @@ workflows: - develop - pm-1346 - pm-1358_1 - - ps-411-css-issue # This is alternate dev env for parallel testing # Deprecate this workflow due to beta env shutdown # https://topcoder.atlassian.net/browse/CORE-251 diff --git a/src/shared/components/challenge-detail/Header/style.scss b/src/shared/components/challenge-detail/Header/style.scss index 920ba155e7..d75b659b72 100644 --- a/src/shared/components/challenge-detail/Header/style.scss +++ b/src/shared/components/challenge-detail/Header/style.scss @@ -183,6 +183,10 @@ .datasci-accent-color { color: $tc-orange; } + + .data-science-accent-color { + color: $tc-orange; + } } @mixin design-accent-btm-border { diff --git a/src/shared/components/tco/scoreboard/Header/style.scss b/src/shared/components/tco/scoreboard/Header/style.scss index 6fb22b5fbb..4b166749b9 100644 --- a/src/shared/components/tco/scoreboard/Header/style.scss +++ b/src/shared/components/tco/scoreboard/Header/style.scss @@ -56,6 +56,10 @@ .datasci-accent-color { color: $tc-orange; } + + .data-science-accent-color { + color: $tc-orange; + } } @mixin design-accent-btm-border { From d06a8cfc04c43875580946c0d9b8db2e8678dfa2 Mon Sep 17 00:00:00 2001 From: Vasilica Olariu Date: Fri, 17 Oct 2025 12:29:02 +0300 Subject: [PATCH 7/9] PS-423 - fix retUrl in gigs modal --- src/shared/components/Gigs/GigDetails/index.jsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/shared/components/Gigs/GigDetails/index.jsx b/src/shared/components/Gigs/GigDetails/index.jsx index c4d26969a7..6404411b4a 100644 --- a/src/shared/components/Gigs/GigDetails/index.jsx +++ b/src/shared/components/Gigs/GigDetails/index.jsx @@ -8,7 +8,7 @@ import { isEmpty } from 'lodash'; import React, { useState } from 'react'; import PT from 'prop-types'; import { connect } from 'react-redux'; -import { Link, config } from 'topcoder-react-utils'; +import { Link, config, isomorphy } from 'topcoder-react-utils'; import ReactHtmlParser from 'react-html-parser'; import { getSalaryType, getCustomField } from 'utils/gigs'; import './style.scss'; @@ -39,7 +39,7 @@ function GigDetails(props) { const { job, application, profile, } = props; - let retUrl; + let retUrl = isomorphy.isClientSide() ? location.href : null; let skills = getCustomField(job.custom_fields, 'Technologies Required'); if (skills !== 'n/a') skills = skills.split(',').join(', '); const hPerW = getCustomField(job.custom_fields, 'Hours per week'); From 7a480cdd63429438d6751e75aafc6c424e316bb0 Mon Sep 17 00:00:00 2001 From: Vasilica Olariu Date: Fri, 17 Oct 2025 12:37:33 +0300 Subject: [PATCH 8/9] PS-423 - fix tests --- src/shared/components/Gigs/GigDetails/index.jsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/shared/components/Gigs/GigDetails/index.jsx b/src/shared/components/Gigs/GigDetails/index.jsx index 6404411b4a..558ad9bdf0 100644 --- a/src/shared/components/Gigs/GigDetails/index.jsx +++ b/src/shared/components/Gigs/GigDetails/index.jsx @@ -39,7 +39,8 @@ function GigDetails(props) { const { job, application, profile, } = props; - let retUrl = isomorphy.isClientSide() ? location.href : null; + // eslint-disable-next-line no-restricted-globals + const retUrl = isomorphy.isClientSide() ? location.href : null; let skills = getCustomField(job.custom_fields, 'Technologies Required'); if (skills !== 'n/a') skills = skills.split(',').join(', '); const hPerW = getCustomField(job.custom_fields, 'Hours per week'); From c70c659277a6099e74ddebd6aa2cd78699b9fd09 Mon Sep 17 00:00:00 2001 From: Vasilica Olariu Date: Fri, 17 Oct 2025 12:51:23 +0300 Subject: [PATCH 9/9] PS-412 - replace taas email --- src/shared/components/Gigs/GigApply/index.jsx | 6 +++--- src/shared/components/Gigs/GigDetails/index.jsx | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/shared/components/Gigs/GigApply/index.jsx b/src/shared/components/Gigs/GigApply/index.jsx index 53d6b557bc..f3ea35051f 100644 --- a/src/shared/components/Gigs/GigApply/index.jsx +++ b/src/shared/components/Gigs/GigApply/index.jsx @@ -79,7 +79,7 @@ export default function GigApply(props) {

One Gig Limit!

-

Apologies, you are not allowed to apply to gigs if you are already placed on a gig.

You can however refer a friend to this gig and receive $500 if they get placed in that gig. To do that, you can enter their email on the right side of the Gigs Description page.

If you have any questions or feel this is an error, please email talent.topcoder@wipro.com.

+

Apologies, you are not allowed to apply to gigs if you are already placed on a gig.

You can however refer a friend to this gig and receive $500 if they get placed in that gig. To do that, you can enter their email on the right side of the Gigs Description page.

If you have any questions or feel this is an error, please email talent.taas@wipro.com.

Back To Gig @@ -102,11 +102,11 @@ export default function GigApply(props) { } { application.errorObj && application.errorObj.notAllowed ? ( -

If you have any questions or feel this is an error, please email talent.topcoder@wipro.com.

+

If you have any questions or feel this is an error, please email talent.taas@wipro.com.

) : (

Looks like there is a problem on our end. Please try again.
If this persists please contact support@topcoder.com.

-

Please send us an email at talent.topcoder@wipro.com with the subject ‘Gig Error’
and paste the URL for the gig you are attempting to apply for so that we know of your interest.

+

Please send us an email at talent.taas@wipro.com with the subject ‘Gig Error’
and paste the URL for the gig you are attempting to apply for so that we know of your interest.

) } diff --git a/src/shared/components/Gigs/GigDetails/index.jsx b/src/shared/components/Gigs/GigDetails/index.jsx index 558ad9bdf0..91601f521b 100644 --- a/src/shared/components/Gigs/GigDetails/index.jsx +++ b/src/shared/components/Gigs/GigDetails/index.jsx @@ -116,7 +116,7 @@ function GigDetails(props) { ** USA Visa Holders - Please consult an attorney before applying to any Topcoder Gig. Some visa statuses will or will not allow you to conduct freelance work with Topcoder. - *** Topcoder and Wipro employees are not eligible for Gig work opportunities. Do not apply and send questions to talent.topcoder@wipro.com. + *** Topcoder and Wipro employees are not eligible for Gig work opportunities. Do not apply and send questions to talent.taas@wipro.com.
@@ -156,7 +156,7 @@ function GigDetails(props) {
-
If you have any questions or doubts, don’t hesitate to email talent.topcoder@wipro.com.
+
If you have any questions or doubts, don’t hesitate to email talent.taas@wipro.com.
{ isLoginModalOpen && setLoginModalOpen(false)} /> }