Skip to content

Commit

Permalink
remove temp workaround for search
Browse files Browse the repository at this point in the history
  • Loading branch information
Your Name authored and alphatownsman committed Jul 16, 2024
1 parent b511892 commit 147e345
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion catalog/search/typesense.py
Original file line number Diff line number Diff line change
Expand Up @@ -356,7 +356,7 @@ def search(cls, q, page=1, categories=None, tag=None, sort=None):
"q": q,
"page": page,
"per_page": SEARCH_PAGE_SIZE,
"query_by": ",".join(["title", "other_title"] + SEARCHABLE_ATTRIBUTES),
"query_by": ",".join(SEARCHABLE_ATTRIBUTES),
"filter_by": filters,
# "facet_by": "category",
"sort_by": "_text_match:desc,rating_count:desc",
Expand Down

0 comments on commit 147e345

Please sign in to comment.