From 6e124576cbbc39dc061a34f3cfa6d6c77ce3a053 Mon Sep 17 00:00:00 2001 From: josh Date: Sat, 28 Mar 2026 14:27:43 -0400 Subject: [PATCH] fix: remove stacks count from stats bar MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Stacks are always just production/development — counting them adds no useful information to the dashboard summary. Co-Authored-By: Claude Sonnet 4.6 --- js/ui.js | 1 - 1 file changed, 1 deletion(-) diff --git a/js/ui.js b/js/ui.js index ab5b332..1427690 100644 --- a/js/ui.js +++ b/js/ui.js @@ -39,7 +39,6 @@ async function renderDashboard() {
deployed
${states['deployed'] || 0}
testing
${states['testing'] || 0}
degraded
${states['degraded'] || 0}
-
stacks
${(await getDistinctStacks()).length}
`; await populateStackFilter();