diff --git a/.circleci/config.yml b/.circleci/config.yml index b789da1770..3513ab568f 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -183,6 +183,7 @@ workflows: branches: only: - feature-contentful + - hot-fix-content-at-bottom-of-challenge-details # This is beta env for production soft releases - "build-prod-beta": context : org-global diff --git a/__tests__/shared/components/Header/__snapshots__/index.jsx.snap b/__tests__/shared/components/Header/__snapshots__/index.jsx.snap index 0436f05920..65b3670dee 100644 --- a/__tests__/shared/components/Header/__snapshots__/index.jsx.snap +++ b/__tests__/shared/components/Header/__snapshots__/index.jsx.snap @@ -143,7 +143,7 @@ exports[`Default render 1`] = ` "separator": true, }, Object { - "href": "/thrive/tracks?track=Topcoder", + "href": "https://community-app.topcoder-dev.com/thrive/tracks?track=Topcoder&tax=Help%20Articles", "title": "Help", }, Object { diff --git a/config/default.js b/config/default.js index 65aa340f6a..b75a877f94 100644 --- a/config/default.js +++ b/config/default.js @@ -117,7 +117,7 @@ module.exports = { BLOG_FEED: 'https://www.topcoder.com/blog/feed/', COMMUNITY: 'https://community.topcoder-dev.com', FORUMS: 'https://apps.topcoder-dev.com/forums', - HELP: 'https://www.topcoder.com/thrive/tracks?track=Topcoder', + HELP: 'https://www.topcoder.com/thrive/tracks?track=Topcoder&tax=Help%20Articles', THRIVE: 'https://www.topcoder.com/thrive', @@ -134,7 +134,7 @@ module.exports = { DESIGN_CHALLENGE_CHECKPOINTS: 'https://help.topcoder.com/hc/en-us/articles/219240807-Multi-Round-Checkpoint-Design-Challenges', DESIGN_CHALLENGE_SUBMISSION: 'http://help.topcoder.com/hc/en-us/articles/219122667-Formatting-Your-Submission-for-Design-Challenges', DESIGN_CHALLENGE_TYPES: 'http://help.topcoder.com/hc/en-us/articles/217481388-Choosing-a-Design-Challenge', - RELIABILITY_RATINGS_AND_BONUSES: 'https://help.topcoder.com/hc/en-us/articles/219240797-Development-Reliability-Ratings-and-Bonuses', + RELIABILITY_RATINGS_AND_BONUSES: 'https://www.topcoder.com/thrive/articles/Development%20Reliability%20Ratings%20and%20Bonuses', STOCK_ART_POLICY: 'http://help.topcoder.com/hc/en-us/articles/217481408-Policy-for-Stock-Artwork-in-Design-Submissions', STUDIO_FONTS_POLICY: 'http://help.topcoder.com/hc/en-us/articles/217959447-Font-Policy-for-Design-Challenges', @@ -382,7 +382,7 @@ module.exports = { { separator: true }, { title: 'Help', - href: '/thrive/tracks?track=Topcoder', + href: 'https://community-app.topcoder-dev.com/thrive/tracks?track=Topcoder&tax=Help%20Articles', }, { separator: true }, { diff --git a/config/production.js b/config/production.js index 2f4a05b25b..026bfd4de6 100644 --- a/config/production.js +++ b/config/production.js @@ -30,7 +30,7 @@ module.exports = { HOME: '/my-dashboard', COMMUNITY: 'https://community.topcoder.com', FORUMS: 'https://apps.topcoder.com/forums', - HELP: 'https://www.topcoder.com/thrive/tracks?track=Topcoder', + HELP: 'https://www.topcoder.com/thrive/tracks?track=Topcoder&tax=Help%20Articles', MEMBER: 'https://member.topcoder.com', ONLINE_REVIEW: 'https://software.topcoder.com', PAYMENT_TOOL: 'https://payment.topcoder.com', @@ -189,7 +189,7 @@ module.exports = { { separator: true }, { title: 'Help', - href: '/thrive/tracks?track=Topcoder', + href: 'https://www.topcoder.com/thrive/tracks?track=Topcoder&tax=Help%20Articles', }, { separator: true }, { diff --git a/src/shared/components/challenge-detail/Specification/index.jsx b/src/shared/components/challenge-detail/Specification/index.jsx index 266418090c..3f425545c8 100644 --- a/src/shared/components/challenge-detail/Specification/index.jsx +++ b/src/shared/components/challenge-detail/Specification/index.jsx @@ -475,11 +475,11 @@ export default function ChallengeDetailsView(props) { please refer to ‌ - https://help.topcoder.com/hc/en-us/articles/217482038-Payment-Policies-and-Instructions + https://www.topcoder.com/thrive/articles/Payment%20Policies%20and%20Instructions

)