diff --git a/src/App.vue b/src/App.vue index 9144ed45..3c83aaa2 100644 --- a/src/App.vue +++ b/src/App.vue @@ -613,7 +613,7 @@ const categoryCounts = computed(() => { return { ...tabCounts, all: allCounts.all }; } - const counts: Record = { all: apps.value.length }; + const counts: Record = { all: baseApps.value.length }; sourceApps.forEach((app) => { if (!counts[app.category]) counts[app.category] = 0; counts[app.category]++;