From 147e345976b3dbcddffd2391db84c80c103f0895 Mon Sep 17 00:00:00 2001 From: Your Name Date: Tue, 16 Jul 2024 14:16:46 -0400 Subject: [PATCH] remove temp workaround for search --- catalog/search/typesense.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/catalog/search/typesense.py b/catalog/search/typesense.py index bf4c4879..95802018 100644 --- a/catalog/search/typesense.py +++ b/catalog/search/typesense.py @@ -356,7 +356,7 @@ class Indexer: "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",