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.
1 parent 3beed47 commit 1e68952Copy full SHA for 1e68952
src/shared/utils/challenge-listing/filter.js
@@ -136,6 +136,10 @@ function filterByText(challenge, state) {
136
137
function filterByTrack(challenge, state) {
138
if (!state.tracks) return true;
139
+ // include code challenges with 'data science' tag in datasci track
140
+ if (_.get(state.tracks, 'datasci')) {
141
+ return _.includes(challenge.technologies, 'Data Science');
142
+ }
143
return _.keys(state.tracks).some(track => challenge.communities.has(track));
144
}
145
0 commit comments