Skip to content

Commit 0076690

Browse files
Merge pull request #4943 from topcoder-platform/milestone-20200924
Smoke Testing 2020-09-17 #1
2 parents 27118ee + ae3382e commit 0076690

File tree

8 files changed

+15
-5
lines changed

8 files changed

+15
-5
lines changed

.circleci/config.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,6 @@ workflows:
230230
filters:
231231
branches:
232232
only:
233-
- milestone-20200924
234233
- develop
235234
# This is alternate dev env for parallel testing
236235
- "build-test":

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

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
// Jest Snapshot v1, https://goo.gl/fbAQLP
22

33
exports[`Default render 1`] = `
4-
<div>
4+
<div
5+
className="src-shared-components-Header-___style__nav-header-wrapper___3oH9J"
6+
>
57
<TopNav
68
loggedIn={true}
79
logo={

src/shared/components/Header/index.jsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ import { config } from 'topcoder-react-utils';
55
import Logo from 'assets/images/tc-logo.svg';
66
import { tracking } from '../../actions';
77

8+
import './style.scss';
9+
810
let TopNavRef;
911
let LoginNavRef;
1012

@@ -69,7 +71,7 @@ const Header = ({
6971

7072
if (TopNavRef) {
7173
return (
72-
<div>
74+
<div styleName="nav-header-wrapper">
7375
<TopNavRef
7476
menu={headerMenu || config.HEADER_MENU}
7577
rightMenu={(
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
.nav-header-wrapper {
2+
z-index: 2;
3+
}

src/shared/components/ProfilePage/Header/index.jsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,7 @@ class ProfileHeader extends React.Component {
7272
<span>
7373
{' '}
7474
|
75+
{' '}
7576
{wins}
7677
{' '}
7778
Wins

src/shared/components/TopcoderFooter/style.scss

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,7 @@
7272
font-weight: 400;
7373
line-height: 21px;
7474
position: relative;
75+
z-index: 0;
7576

7677
@include xs-to-sm {
7778
padding: 30px 30px 21px 30px;

src/shared/components/challenge-detail/Header/ChallengeTags.jsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,9 @@ export default function ChallengeTags(props) {
6262
challengeType
6363
&& (
6464
<TrackTag
65-
onClick={() => setImmediate(() => setChallengeListingFilter(challengeType.id))
65+
onClick={() => (
66+
setImmediate(() => setChallengeListingFilter({ types: [challengeType.id] }))
67+
)
6668
}
6769
to={`${challengesUrl}?filter[types][0]=${encodeURIComponent(challengeType.id)}`}
6870
>

src/shared/routes/Topcoder/styles.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@
88
display: flex;
99
flex: 1 0 auto;
1010
position: relative;
11-
z-index: 0;
11+
z-index: 1;
1212
}
1313
}

0 commit comments

Comments
 (0)