Include entry type in search results

This commit is contained in:
thePR0M3TH3AN
2025-08-02 16:26:52 -04:00
parent b4f792ad67
commit dcd095d1af
21 changed files with 106 additions and 63 deletions

View File

@@ -351,7 +351,7 @@ class SearchDialog(toga.Window):
query = self.query_input.value or ""
results = self.main.entries.search_entries(query)
self.main.entry_source.clear()
for idx, label, username, url, _arch in results:
for idx, label, username, url, _arch, _etype in results:
self.main.entry_source.append(
{
"id": idx,