Skip to content

Commit d141786

Browse files
authored
Merge pull request #4643 from topcoder-platform/feature-contentful
Feature contentful
2 parents 16b426b + 229163c commit d141786

File tree

7 files changed

+29
-9
lines changed

7 files changed

+29
-9
lines changed

.circleci/config.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -238,7 +238,7 @@ workflows:
238238
filters:
239239
branches:
240240
only:
241-
- feature-contentful
241+
- integration-v5-challenge-api
242242
# This is alternate dev env for parallel testing
243243
- "build-qa":
244244
context : org-global
@@ -259,7 +259,7 @@ workflows:
259259
filters:
260260
branches:
261261
only:
262-
- feature-contentful
262+
- develop
263263
# Production builds are exectuted
264264
# when PR is merged to the master
265265
# Don't change anything in this configuration

__tests__/shared/components/Header/__snapshots__/index.jsx.snap

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ exports[`Default render 1`] = `
5858
"title": "All Challenges",
5959
},
6060
Object {
61-
"href": "https://arena.topcoder-dev.com",
61+
"href": "/community/arena",
6262
"title": "Competitive Programming",
6363
},
6464
Object {
@@ -208,4 +208,4 @@ exports[`Default render 1`] = `
208208
}
209209
/>
210210
</div>
211-
`;
211+
`;

__tests__/shared/components/__snapshots__/TopcoderFooter.jsx.snap

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ exports[`Matches shallow shapshot 1`] = `
5454
className="src-shared-components-TopcoderFooter-___style__link___3-nzm"
5555
>
5656
<a
57-
href="https://arena.topcoder.com/"
57+
href="https://www.topcoder-dev.com/community/arena"
5858
>
5959
Competitive Programming
6060
</a>
@@ -68,6 +68,15 @@ exports[`Matches shallow shapshot 1`] = `
6868
Gig Work
6969
</a>
7070
</li>
71+
<li
72+
className="src-shared-components-TopcoderFooter-___style__link___3-nzm"
73+
>
74+
<a
75+
href="https://www.topcoder-dev.com/community/practice"
76+
>
77+
Practice
78+
</a>
79+
</li>
7180
</ul>
7281
</div>
7382
<div
@@ -154,6 +163,15 @@ exports[`Matches shallow shapshot 1`] = `
154163
Blog
155164
</a>
156165
</li>
166+
<li
167+
className="src-shared-components-TopcoderFooter-___style__link___3-nzm"
168+
>
169+
<a
170+
href="https://www.topcoder-dev.com/community/pipeline"
171+
>
172+
Challenge Pipeline
173+
</a>
174+
</li>
157175
<li
158176
className="src-shared-components-TopcoderFooter-___style__link___3-nzm"
159177
>

config/default.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -309,7 +309,7 @@ module.exports = {
309309
},
310310
{
311311
title: 'Competitive Programming',
312-
href: 'https://arena.topcoder-dev.com',
312+
href: '/community/arena',
313313
},
314314
{
315315
title: 'Gig Work',

config/production.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ module.exports = {
111111
},
112112
{
113113
title: 'Competitive Programming',
114-
href: 'https://arena.topcoder.com',
114+
href: '/community/arena',
115115
},
116116
{
117117
title: 'Gig Work',

src/shared/components/TopcoderFooter/index.jsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,9 @@ export default function TopcoderFooter() {
4444
<div styleName="sep-line" />
4545
<ul styleName="navi-col-links">
4646
<Link to={`${base}/challenges`}>All Challenges</Link>
47-
<Link to="https://arena.topcoder.com/">Competitive Programming</Link>
47+
<Link to={`${base}/community/arena`}>Competitive Programming</Link>
4848
<Link to={`${base}/community/taas`}>Gig Work</Link>
49+
<Link to={`${base}/community/practice`}>Practice</Link>
4950
</ul>
5051
</div>
5152
<div styleName="navi-col">
@@ -64,6 +65,7 @@ export default function TopcoderFooter() {
6465
<div styleName="sep-line" />
6566
<ul styleName="navi-col-links">
6667
<Link to={`${base}/blog`}>Blog</Link>
68+
<Link to={`${base}/community/pipeline`}>Challenge Pipeline</Link>
6769
<Link to={`${base}/community/events`}>Events Calendar</Link>
6870
<Link to="https://apps.topcoder.com/forums">Forums</Link>
6971
<Link to={`${base}/community/member-programs`}>Programs</Link>

src/shared/components/buttons/themed/tc.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444

4545
&:active,
4646
&:visited {
47-
border: 1px solid #0ab88a !important;
47+
border: 1px solid #137d60 !important;
4848
box-shadow: none !important;
4949
}
5050
}

0 commit comments

Comments
 (0)