Hooks: make hook activate after settings are updated

This commit is contained in:
Ly-sec 2025-09-04 18:23:46 +02:00
parent fe6ecf7daf
commit 46bc8939b4
2 changed files with 7 additions and 7 deletions

View file

@ -37,8 +37,8 @@ Item {
if (!query || query.trim() === "") {
// Return all apps alphabetically
return entries.sort((a, b) => a.name.toLowerCase().localeCompare(b.name.toLowerCase()))
.map(app => createResultEntry(app))
return entries.sort((a, b) => a.name.toLowerCase().localeCompare(b.name.toLowerCase())).map(
app => createResultEntry(app))
}
// Use fuzzy search if available, fallback to simple search