File tree Expand file tree Collapse file tree 9 files changed +32
-11
lines changed
TracksTree/ChildListRow/themes Expand file tree Collapse file tree 9 files changed +32
-11
lines changed Original file line number Diff line number Diff line change @@ -361,15 +361,14 @@ workflows:
361361 filters :
362362 branches :
363363 only :
364- - free
364+ - thrive-bug-fixes
365365 # This is stage env for production QA releases
366366 - " build-prod-staging " :
367367 context : org-global
368368 filters : &filters-staging
369369 branches :
370370 only :
371371 - develop
372- - fix-circleci-deployment
373372 # Production builds are exectuted
374373 # when PR is merged to the master
375374 # Don't change anything in this configuration
Original file line number Diff line number Diff line change @@ -110,7 +110,7 @@ export class SearchPageFilterInner extends Component {
110110 < div className = { theme . section } >
111111 < button
112112 type = "button"
113- className = { `${ theme [ 'section-header' ] } ${ isShowSubCategory ? theme . expanded : '' } ` }
113+ className = { `${ theme [ 'section-header' ] } ${ ! isShowSubCategory ? theme . expanded : '' } ` }
114114 onClick = { ( ) => { this . setState ( { isShowSubCategory : ! isShowSubCategory } ) ; } }
115115 >
116116 < span className = { theme [ 'section-title' ] } > sub category</ span >
Original file line number Diff line number Diff line change @@ -102,6 +102,8 @@ $green-color: #137d60;
102102}
103103
104104.expanded {
105+ margin-bottom : 0 !important ;
106+
105107 svg {
106108 -moz-transform : scale (-1 , -1 );
107109 -o-transform : scale (-1 , -1 );
Original file line number Diff line number Diff line change @@ -77,7 +77,7 @@ $text-gray: #7f7f7f;
7777 flex-direction : column ;
7878 margin-left : 22px ;
7979 color : $text-black ;
80- cursor : pointer ;
80+ align-items : flex-start ;
8181
8282 > div {
8383 position : relative ;
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ import _ from 'lodash';
22import React , { useState , useEffect } from 'react' ;
33import PT from 'prop-types' ;
44import { config } from 'topcoder-react-utils' ;
5- import Logo from 'assets/images/tc-logo.svg' ;
5+ import Logo from 'assets/images/tc-logo-pride .svg' ;
66import { tracking } from '../../actions' ;
77
88import './style.scss' ;
Original file line number Diff line number Diff line change 146146 align-items : center ;
147147 background-image : url (assets/images/data-back.svg );
148148 width : 78px ;
149- height : 69 px ;
149+ height : 71 px ;
150150 }
151151
152152 .trackIconDesign {
207207
208208 @include xs-to-sm {
209209 margin : 32px 0 0 0 ;
210+ text-align : center ;
210211 }
211212
212213 .trackTitle {
219220 text-align : left ;
220221 text-transform : uppercase ;
221222 margin-bottom : 13px ;
222- display : block ;
223+ display : inline- block ;
223224
224225 @include xs-to-sm {
225226 text-align : center ;
Original file line number Diff line number Diff line change @@ -363,8 +363,12 @@ class ChallengeDetailPageContainer extends React.Component {
363363 metadata,
364364 } = challenge ;
365365
366- const { track } = legacy || { } ;
366+ let { track } = legacy || { } ;
367367
368+ if ( ! track ) {
369+ /* eslint-disable prefer-destructuring */
370+ track = challenge . track || '' ;
371+ }
368372 const submissionsViewable = _ . find ( metadata , { type : 'submissionsViewable' } ) ;
369373
370374 const isLoggedIn = ! _ . isEmpty ( auth . tokenV3 ) ;
You can’t perform that action at this time.
0 commit comments