From ec191d51bc73b959ded7aeb20759c89eb41b4e6f Mon Sep 17 00:00:00 2001 From: Johannes Zellner Date: Thu, 30 Oct 2025 16:01:03 +0100 Subject: [PATCH] Sort apps in the grid by label --- dashboard/src/views/AppsView.vue | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/dashboard/src/views/AppsView.vue b/dashboard/src/views/AppsView.vue index be3d9d751..5e220af65 100644 --- a/dashboard/src/views/AppsView.vue +++ b/dashboard/src/views/AppsView.vue @@ -149,6 +149,11 @@ const filteredApps = computed(() => { if (stateFilter.value === 'update_available') return a.updateInfo; return a.runState === RSTATES.RUNNING && (a.health !== HSTATES.HEALTHY || a.installationState !== ISTATES.INSTALLED); // not responding + }).sort((a, b) => { + const labelA = a.label || a.subdomain || a.fqdn; + const labelB = b.label || b.subdomain || b.fqdn; + + return labelA.localeCompare(labelB); }); });