We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents ce119b9 + dee2101 commit 1013189Copy full SHA for 1013189
src/shared/utils/challenge-listing/filter.js
@@ -136,6 +136,14 @@ function filterByText(challenge, state) {
136
137
function filterByTrack(challenge, state) {
138
if (!state.tracks) return true;
139
+
140
+ /* Development challenges having Data Science tech tag, still should be
141
+ * included into data science track. */
142
+ if (state.tracks[COMPETITION_TRACKS.DATA_SCIENCE]
143
+ && _.includes(challenge.technologies, 'Data Science')) {
144
+ return true;
145
+ }
146
147
return _.keys(state.tracks).some(track => challenge.communities.has(track));
148
}
149
0 commit comments