File tree 3 files changed +9
-2
lines changed
3 files changed +9
-2
lines changed Original file line number Diff line number Diff line change @@ -375,6 +375,7 @@ Object {
375
375
" DATA_SCIENCE" : " data_science" ,
376
376
" DESIGN" : " design" ,
377
377
" DEVELOP" : " develop" ,
378
+ " QA" : " qa" ,
378
379
},
379
380
" REVIEW_OPPORTUNITY_TYPES" : Object {
380
381
" Contest Review" : " Review" ,
Original file line number Diff line number Diff line change @@ -160,13 +160,18 @@ function filterByText(challenge, state) {
160
160
function filterByTrack ( challenge , state ) {
161
161
if ( ! state . tracks ) return true ;
162
162
163
- /* Development challenges having Data Science tech tag, still should be
164
- * included into data science track . */
163
+ /* Development challenges having Data Science and QA tech tag, still should be
164
+ * included into data science and qa tracks . */
165
165
if ( state . tracks [ COMPETITION_TRACKS . DATA_SCIENCE ]
166
166
&& _ . includes ( challenge . tags , 'Data Science' ) ) {
167
167
return true ;
168
168
}
169
169
170
+ if ( state . tracks [ COMPETITION_TRACKS . QA ]
171
+ && _ . includes ( challenge . tags , 'QA' ) ) {
172
+ return true ;
173
+ }
174
+
170
175
return _ . keys ( state . tracks ) . some ( track => challenge . communities . has ( track ) ) ;
171
176
}
172
177
Original file line number Diff line number Diff line change @@ -14,6 +14,7 @@ export const COMPETITION_TRACKS = {
14
14
DATA_SCIENCE : 'data_science' ,
15
15
DESIGN : 'design' ,
16
16
DEVELOP : 'develop' ,
17
+ QA : 'qa' ,
17
18
} ;
18
19
19
20
/**
You can’t perform that action at this time.
0 commit comments