Replace item dialogs with Popups for better integration

This commit is contained in:
Cole Deck
2024-12-20 23:41:19 +00:00
parent 27169ff8a0
commit b1c817432b
4 changed files with 254 additions and 283 deletions

View File

@@ -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