booru: instant feedback on enter

This commit is contained in:
end-4
2025-05-04 00:11:36 +02:00
parent dc0a15e63b
commit 41e82f0693
4 changed files with 17 additions and 22 deletions
+1 -1
View File
@@ -9,7 +9,7 @@ Singleton {
readonly property list<DesktopEntry> list: Array.from(DesktopEntries.applications.values)
.sort((a, b) => a.name.localeCompare(b.name))
readonly property list<var> preppedNames: list.map(a => ({
readonly property var preppedNames: list.map(a => ({
name: Fuzzy.prepare(`${a.name} `),
entry: a
}))