We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents d7c16af + 534fb7c commit aa5cfd1Copy full SHA for aa5cfd1
src/utils/challenge/filter.js
@@ -249,10 +249,10 @@ export function getFilterFunction(state) {
249
export function getReviewOpportunitiesFilterFunction(state, validTypes) {
250
return (opp) => {
251
const trackAbbr = {
252
- DATA_SCIENCE: 'DS',
253
- DEVELOP: 'Dev',
254
- DESIGN: 'Des',
255
- QA: 'QA',
+ 'Data Science': 'DS',
+ Development: 'Dev',
+ Design: 'Des',
+ 'Quality Assurance': 'QA',
256
};
257
// const newType = _.find(validTypes, { name: opp.challenge.type }) || {};
258
const newType = _.find(validTypes, { name: opp.challenge.subTrack === 'FIRST_2_FINISH' ? 'First2Finish' : 'Challenge' }) || {};
0 commit comments