diff --git a/dashboard/src/views/AppsView.vue b/dashboard/src/views/AppsView.vue index 34d6bfb66..90e322d50 100644 --- a/dashboard/src/views/AppsView.vue +++ b/dashboard/src/views/AppsView.vue @@ -54,7 +54,7 @@ const listColumns = { if (!fullA || !fullA) return -1; const checkA = fullA.label || fullA.subdomain || fullA.fqdn; const checkB = fullB.label || fullB.subdomain || fullB.fqdn; - return checkA < checkB ? -1 : (checkA > checkB ? 1 : 0); + return checkA.toLowerCase() < checkB.toLowerCase() ? -1 : (checkA.toLowerCase() > checkB.toLowerCase() ? 1 : 0); }, }, fqdn: {