File tree Expand file tree Collapse file tree 4 files changed +11
-16
lines changed
__tests__/shared/components/challenge-listing/Filters/__snapshots__
src/shared/components/challenge-listing/Filters/FiltersPanel Expand file tree Collapse file tree 4 files changed +11
-16
lines changed Original file line number Diff line number Diff line change @@ -349,7 +349,9 @@ workflows:
349349 filters :
350350 branches :
351351 only :
352+ - develop
352353 - free
354+ - justin-fixes
353355 # This is alternate dev env for parallel testing
354356 - " build-test " :
355357 context : org-global
Original file line number Diff line number Diff line change @@ -224,7 +224,7 @@ exports[`Matches shallow shapshot 2`] = `
224224 composeAdhocTheme = " deeply"
225225 composeContextTheme = " softly"
226226 enabled = { false }
227- labelAfter = " TCO Eligible Challenges"
227+ labelAfter = " Only Show TCO Eligible Challenges"
228228 labelBefore = " "
229229 mapThemrProps = { [Function ]}
230230 onSwitch = { [Function ]}
Original file line number Diff line number Diff line change @@ -666,8 +666,9 @@ export default function FiltersPanel({
666666 </ React . Fragment >
667667 )
668668 }
669- { isTcoChallengesVisible
670- && (
669+ {
670+ isTcoChallengesVisible
671+ && (
671672 < React . Fragment >
672673 < div styleName = "filter-row tco-challenges-filter" >
673674 < span
@@ -678,7 +679,7 @@ export default function FiltersPanel({
678679 >
679680 < SwitchWithLabel
680681 enabled = { tcoToggle }
681- labelAfter = "TCO Eligible Challenges"
682+ labelAfter = "Only Show TCO Eligible Challenges"
682683 onSwitch = { onSwitchTcoChallenge }
683684 />
684685 </ span >
@@ -695,9 +696,8 @@ export default function FiltersPanel({
695696 </ div >
696697 </ div >
697698 </ React . Fragment >
698- )
699+ )
699700 }
700-
701701 </ div >
702702
703703 {
Original file line number Diff line number Diff line change @@ -120,10 +120,8 @@ hr.hr {
120120
121121 .recommended-select-label ,
122122 .tco-select-label {
123- width : 45% ;
124123 margin-bottom : 16px ;
125124 display : flex ;
126- white-space : nowrap ;
127125 line-height : 30px ;
128126 justify-content : flex-start ;
129127 margin-top : 15px ;
@@ -133,8 +131,6 @@ hr.hr {
133131 }
134132
135133 @include sm-to-md {
136- width : 50% ;
137-
138134 > div {
139135 display : inline-flex ;
140136 flex-direction : row-reverse ;
@@ -623,16 +619,13 @@ hr.hr {
623619
624620 .recommended-challenge-tooltip ,
625621 .tco-challenge-tooltip {
626- position : absolute ;
627- left : 210px ;
622+ position : relative ;
623+ left : 7px ;
624+ top : 18px ;
628625 display : flex ;
629626 flex-direction : column ;
630627 justify-content : center ;
631628 height : 100% ;
632-
633- @include xs-to-md {
634- left : 210px ;
635- }
636629 }
637630 }
638631}
You can’t perform that action at this time.
0 commit comments