We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 70fb1f5 + 9000099 commit 4bb6f2dCopy full SHA for 4bb6f2d
components/ChallengeFilters/ChallengeFilterWithSearch.js
@@ -37,9 +37,7 @@ class Filter extends BaseFilter {
37
return (item) => {
38
if (!parent(item)) return false;
39
if (this.query) {
40
- const platforms = item.platforms.join(' ');
41
- const techs = item.technologies.join(' ');
42
- const str = `${item.challengeName} ${platforms} ${techs}`.toLowerCase();
+ const str = `${item.name} ${item.platforms} ${item.technologies}`.toLowerCase();
43
if (str.indexOf(this.query.toLowerCase()) < 0) return false;
44
}
45
return true;
0 commit comments