Skip to content

Commit ec57edf

Browse files
Merge pull request #3466 from topcoder-platform/issue_3444
Fix issue #3444 : Always show sub nav when page have your own menu.
2 parents 7a85b9e + d49ac7f commit ec57edf

File tree

3 files changed

+0
-9
lines changed

3 files changed

+0
-9
lines changed

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

-3
Original file line numberDiff line numberDiff line change
@@ -71,12 +71,10 @@ exports[`Default render 1`] = `
7171
Object {
7272
"subMenu": Array [
7373
Object {
74-
"collapsed": true,
7574
"href": "/community/competitive-programming",
7675
"title": "Competitive Programming",
7776
},
7877
Object {
79-
"collapsed": true,
8078
"href": "/community/data-science",
8179
"title": "Data Science",
8280
},
@@ -110,7 +108,6 @@ exports[`Default render 1`] = `
110108
"title": "Forums",
111109
},
112110
Object {
113-
"collapsed": true,
114111
"href": "/community/statistics",
115112
"title": "Statistics",
116113
},

config/default.js

-3
Original file line numberDiff line numberDiff line change
@@ -335,12 +335,10 @@ module.exports = {
335335
{
336336
title: 'Competitive Programming',
337337
href: '/community/competitive-programming',
338-
collapsed: true,
339338
},
340339
{
341340
title: 'Data Science',
342341
href: '/community/data-science',
343-
collapsed: true,
344342
},
345343
{
346344
title: 'Design',
@@ -374,7 +372,6 @@ module.exports = {
374372
{
375373
title: 'Statistics',
376374
href: '/community/statistics',
377-
collapsed: true,
378375
},
379376
{
380377
title: 'Events',

config/production.js

-3
Original file line numberDiff line numberDiff line change
@@ -118,12 +118,10 @@ module.exports = {
118118
{
119119
title: 'Competitive Programming',
120120
href: '/community/competitive-programming',
121-
collapsed: true,
122121
},
123122
{
124123
title: 'Data Science',
125124
href: '/community/data-science',
126-
collapsed: true,
127125
},
128126
{
129127
title: 'Design',
@@ -157,7 +155,6 @@ module.exports = {
157155
{
158156
title: 'Statistics',
159157
href: '/community/statistics',
160-
collapsed: true,
161158
},
162159
{
163160
title: 'Events',

0 commit comments

Comments
 (0)