We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 57096f8 + 252b35f commit 9b5732bCopy full SHA for 9b5732b
1 file changed
web-app/js/main.js
@@ -747,10 +747,11 @@ document.addEventListener("DOMContentLoaded", function () {
747
var q = query.toLowerCase();
748
749
var catMatch = currentCategory === "all" || category === currentCategory;
750
- var searchMatch =
751
- title.toLowerCase().includes(q) ||
752
- desc.toLowerCase().includes(q) ||
753
- tags.includes(q);
+
+ // FIX FOR ISSUE #1032: Strict Title Matching
+ // Removed description and hidden tag fuzzy-matching to prevent irrelevant
+ // projects (like FLAMES Game) from appearing for unrelated queries.
754
+ var searchMatch = title.toLowerCase().includes(q);
755
756
if (catMatch && searchMatch) {
757
matches.push({
0 commit comments