From 5303b3c70f66fa8fdc08da7c3d4cf323bac3c717 Mon Sep 17 00:00:00 2001 From: Christian Byrne Date: Sat, 1 Nov 2025 03:30:02 -0700 Subject: [PATCH] fix: add cloud badges and server health alerts to second-row workflow tabs (#6515) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## Summary Fixes missing cloud badges and server health alerts when workflow tabs are in the second-row position. ## Problem Badges were only visible when `Comfy.Workflow.WorkflowTabsPosition` was set to `'Topbar'`, but not when set to `'Topbar (2nd-row)'` which is the **default for screens < 1536px wide** on rh-test. The `SecondRowWorkflowTabs.vue` component only rendered `` but was missing ``. ## Changes - Added `` component to `SecondRowWorkflowTabs.vue` - Updated container to use flex layout to match other topbar badge implementations - Badges now display in both 'Topbar' and 'Topbar (2nd-row)' positions ## Testing - Cloud badges should now be visible on screens < 1536px wide (default setting) - Server health alerts from remote config should display properly in second-row tabs ## Note This is an **rh-test only** issue. The main branch removed the 'Topbar (2nd-row)' option in the Floating Menus PR (#5980). ┆Issue is synchronized with this [Notion page](https://www.notion.so/PR-6515-fix-add-cloud-badges-and-server-health-alerts-to-second-row-workflow-tabs-29e6d73d365081c4a4defaf97d2e789e) by [Unito](https://www.unito.io) Co-authored-by: Christian Byrne --- src/components/topbar/SecondRowWorkflowTabs.vue | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/components/topbar/SecondRowWorkflowTabs.vue b/src/components/topbar/SecondRowWorkflowTabs.vue index 777f4944a..c4745b23f 100644 --- a/src/components/topbar/SecondRowWorkflowTabs.vue +++ b/src/components/topbar/SecondRowWorkflowTabs.vue @@ -1,10 +1,12 @@