Skip to content

Commit 5465de2

Browse files
Merge pull request #6587 from topcoder-platform/reskin-profile-alt
Reskin profile - Cherry Pick
2 parents cb4709c + ff10285 commit 5465de2

File tree

3 files changed

+11
-4
lines changed

3 files changed

+11
-4
lines changed

.circleci/config.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -350,7 +350,6 @@ workflows:
350350
branches:
351351
only:
352352
- develop
353-
- reskin-profile
354353
# This is alternate dev env for parallel testing
355354
- "build-test":
356355
context : org-global
@@ -364,7 +363,7 @@ workflows:
364363
filters:
365364
branches:
366365
only:
367-
- free
366+
- reskin-profile
368367
# This is beta env for production soft releases
369368
- "build-prod-beta":
370369
context : org-global

src/shared/components/Contentful/Modal/modal-styles.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ $light-gray: #d4d4d4;
3737
}
3838

3939
.overlay {
40-
background-color: #2a2a2a;
40+
background-color: #000;
4141
opacity: 0.95;
4242
border: none;
4343
height: 100%;

src/shared/components/ProfilePage/Activity/ActivityCard/index.jsx

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,15 @@ const ActivityCard = ({
8383
subTracks.map((subtrack, index) => (
8484
<div styleName="sub-track-item" key={index}>
8585
<span styleName="title">
86-
{_.upperFirst(subtrack.name.replace('FIRST_2_FINISH', 'FIRST2FINISH').replace(/_/g, ' ').toLowerCase())}
86+
{(_.upperFirst(subtrack.name.replace('FIRST_2_FINISH', 'FIRST2FINISH').replace(/_/g, ' ').toLowerCase()))
87+
.replace('First2finish', 'First2Finish')
88+
.replace('Design first2finish', 'Design First2Finish')
89+
.replace('Srm', 'SRM')
90+
.replace('Ria build competition', 'RIA Build Competition')
91+
.replace('Ria component competition', 'RIA Component Competition')
92+
.replace('Design first2finish', 'Design First2Finish')
93+
.replace('Ui prototype competition', 'UI Prototype Competition')
94+
}
8795
</span>
8896

8997
<div styleName="right">

0 commit comments

Comments
 (0)