From b2909b98d0733e42da19c3db5f25de708812d902 Mon Sep 17 00:00:00 2001 From: Ben Potter Date: Tue, 9 Dec 2025 01:58:22 +0000 Subject: [PATCH] fix(site): show command apps in Tasks view MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Previously, command apps (apps with `command` field instead of `url`) were filtered out from the Tasks view because they had health "disabled" when no healthcheck was defined. This change updates the filter to allow command apps through regardless of their health status, so they appear as tabs in the Tasks view alongside web apps and the generic terminal. Fixes #21183 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 --- site/src/pages/TaskPage/TaskApps.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/site/src/pages/TaskPage/TaskApps.tsx b/site/src/pages/TaskPage/TaskApps.tsx index 59ada2181119b..31624c3e27773 100644 --- a/site/src/pages/TaskPage/TaskApps.tsx +++ b/site/src/pages/TaskPage/TaskApps.tsx @@ -34,7 +34,7 @@ export const TaskApps: FC = ({ task, workspace }) => { const apps = getAllAppsWithAgent(workspace).filter( // The Chat UI app will be displayed in the sidebar, so we don't want to // show it as a web app. - (app) => app.id !== task.workspace_app_id && app.health !== "disabled", + (app) => app.id !== task.workspace_app_id, ); const [embeddedApps, externalApps] = splitEmbeddedAndExternalApps(apps); const [activeAppId, setActiveAppId] = useState(embeddedApps.at(0)?.id);