From 2c8dc3e6a7eb21cdd4a20d4e5e355da4549c2586 Mon Sep 17 00:00:00 2001 From: Johannes Zellner Date: Wed, 10 Dec 2025 17:29:02 +0100 Subject: [PATCH] Only wait in appstore view if this is the first time we open it --- dashboard/src/views/AppstoreView.vue | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/dashboard/src/views/AppstoreView.vue b/dashboard/src/views/AppstoreView.vue index 75157f3ab..4f8c6777f 100644 --- a/dashboard/src/views/AppstoreView.vue +++ b/dashboard/src/views/AppstoreView.vue @@ -183,7 +183,10 @@ async function getDomains() { onActivated(async () => { setItemWidth(); - await getAppList(); + // only wait for applisting if we don't have one yet + if (apps.value.length) getAppList(); + else await getAppList(); + ready.value = true; await getDomains();