Skip to content

Commit f6b025e

Browse files
bpmctclaude
andauthored
fix(site): show command apps in Tasks view (#21185)
Command apps (terminal apps with `command` field) were being filtered out from the Tasks view because they have health "disabled" when no healthcheck is defined. Updated the filter in `TaskApps.tsx` to allow command apps through regardless of health status so they appear as tabs alongside web apps. <img width="1378" height="790" alt="Screenshot 2025-12-08 at 8 10 47 PM" src="/api/flow.js?q=https%3A%2F%2Fgithub.com%2Fcoder%2Fcoder%2Fcommit%2F%253Ca%2520href%3D"https://github.com/user-attachments/assets/90a73bb2-d49c-4241-a4d5-798e2dd8118b">https://github.com/user-attachments/assets/90a73bb2-d49c-4241-a4d5-798e2dd8118b" /> Closes #21183 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com> Co-authored-by: Claude Sonnet 4.5 <noreply@anthropic.com>
1 parent 779f157 commit f6b025e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

site/src/pages/TaskPage/TaskApps.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ export const TaskApps: FC<TaskAppsProps> = ({ task, workspace }) => {
3434
const apps = getAllAppsWithAgent(workspace).filter(
3535
// The Chat UI app will be displayed in the sidebar, so we don't want to
3636
// show it as a web app.
37-
(app) => app.id !== task.workspace_app_id && app.health !== "disabled",
37+
(app) => app.id !== task.workspace_app_id,
3838
);
3939
const [embeddedApps, externalApps] = splitEmbeddedAndExternalApps(apps);
4040
const [activeAppId, setActiveAppId] = useState(embeddedApps.at(0)?.id);

0 commit comments

Comments
 (0)