We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 35ba3fe commit 252b35fCopy full SHA for 252b35f
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