1
0
Fork 0
mirror of synced 2024-06-01 10:09:49 +12:00

Text Search and Filters don't work at the same time in the web UI #1316

Making sure to return distinct results. Changing set operation to '&' to show the matching results from filters AND search term
This commit is contained in:
Neel Suthar 2024-01-21 17:34:22 -06:00
parent 10922d426e
commit 279883d6bb

View file

@ -10,10 +10,10 @@ class SearchResultsAdminMixin:
search_term = search_term.strip()
if not search_term:
return qs, use_distinct
return qs.distinct(), use_distinct
try:
qsearch = query_search_index(search_term)
qs = qs | qsearch
qs = qs & qsearch
except Exception as err:
print(f'[!] Error while using search backend: {err.__class__.__name__} {err}')
messages.add_message(request, messages.WARNING, f'Error from the search backend, only showing results from default admin search fields - Error: {err}')