Skip to content

Commit b2909b9

Browse files
bpmctclaude
andcommitted
fix(site): show command apps in Tasks view
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 <noreply@anthropic.com>
1 parent 3a0e8af commit b2909b9

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)