From ab2889c86fec7d52b7a1a2f0ea91bb0098fb36ef Mon Sep 17 00:00:00 2001 From: bbedward Date: Wed, 13 Aug 2025 18:36:24 -0400 Subject: [PATCH] wrap all app category in function --- Modules/AppDrawer/AppLauncher.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Modules/AppDrawer/AppLauncher.qml b/Modules/AppDrawer/AppLauncher.qml index 63a20364..0541bbb5 100644 --- a/Modules/AppDrawer/AppLauncher.qml +++ b/Modules/AppDrawer/AppLauncher.qml @@ -46,7 +46,7 @@ Item { var apps = [] if (searchQuery.length === 0) { if (selectedCategory === "All") { - apps = AppSearchService.applications || [] + apps = AppSearchService.getAppsInCategory("All") // HACK: Use function call instead of property } else { var categoryApps = AppSearchService.getAppsInCategory(selectedCategory) apps = categoryApps.slice(0, maxResults)