diff --git a/.circleci/config.yml b/.circleci/config.yml
index 0bb2747b75..4a590c1e08 100644
--- a/.circleci/config.yml
+++ b/.circleci/config.yml
@@ -230,7 +230,6 @@ workflows:
filters:
branches:
only:
- - milestone-20200924
- develop
# This is alternate dev env for parallel testing
- "build-test":
diff --git a/__tests__/shared/components/Header/__snapshots__/index.jsx.snap b/__tests__/shared/components/Header/__snapshots__/index.jsx.snap
index 5e384a6d98..e82f28e5b7 100644
--- a/__tests__/shared/components/Header/__snapshots__/index.jsx.snap
+++ b/__tests__/shared/components/Header/__snapshots__/index.jsx.snap
@@ -1,7 +1,9 @@
// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`Default render 1`] = `
-
+
+
{' '}
|
+ {' '}
{wins}
{' '}
Wins
diff --git a/src/shared/components/TopcoderFooter/style.scss b/src/shared/components/TopcoderFooter/style.scss
index a5d20be0b4..523667a4d8 100644
--- a/src/shared/components/TopcoderFooter/style.scss
+++ b/src/shared/components/TopcoderFooter/style.scss
@@ -72,6 +72,7 @@
font-weight: 400;
line-height: 21px;
position: relative;
+ z-index: 0;
@include xs-to-sm {
padding: 30px 30px 21px 30px;
diff --git a/src/shared/components/challenge-detail/Header/ChallengeTags.jsx b/src/shared/components/challenge-detail/Header/ChallengeTags.jsx
index bbea412300..67c51669db 100644
--- a/src/shared/components/challenge-detail/Header/ChallengeTags.jsx
+++ b/src/shared/components/challenge-detail/Header/ChallengeTags.jsx
@@ -62,7 +62,9 @@ export default function ChallengeTags(props) {
challengeType
&& (
setImmediate(() => setChallengeListingFilter(challengeType.id))
+ onClick={() => (
+ setImmediate(() => setChallengeListingFilter({ types: [challengeType.id] }))
+ )
}
to={`${challengesUrl}?filter[types][0]=${encodeURIComponent(challengeType.id)}`}
>
diff --git a/src/shared/routes/Topcoder/styles.scss b/src/shared/routes/Topcoder/styles.scss
index 1af7c46852..517fe321bc 100644
--- a/src/shared/routes/Topcoder/styles.scss
+++ b/src/shared/routes/Topcoder/styles.scss
@@ -8,6 +8,6 @@
display: flex;
flex: 1 0 auto;
position: relative;
- z-index: 0;
+ z-index: 1;
}
}