Replace item dialogs with Popups for better integration
This commit is contained in:
@@ -89,7 +89,7 @@ class InventorySearch:
|
||||
:param filters: A meilisearch compatible filter statement.
|
||||
:returns: The search results dict. Actual results are in a list under "hits", but there are other nice values that are useful in the root element."""
|
||||
if filters:
|
||||
q = self.idxref.search(query, {"filter": filters})
|
||||
q = self.idxref.search(query, {"filter": filters, "limit": 1000})
|
||||
else:
|
||||
q = self.idxref.search(query)
|
||||
return q
|
||||
|
Reference in New Issue
Block a user