10000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 789c4be commit 9093dbcCopy full SHA for 9093dbc
site/src/pages/WorkspacesPage/WorkspacesTable.tsx
@@ -626,7 +626,9 @@ const WorkspaceApps: FC<WorkspaceAppsProps> = ({ workspace }) => {
626
builtinApps.delete("ssh_helper");
627
628
const remainingSlots = WORKSPACE_APPS_SLOTS - builtinApps.size;
629
- const userApps = agent.apps.slice(0, remainingSlots);
+ const userApps = agent.apps
630
+ .filter((app) => app.health === "healthy" && !app.hidden)
631
+ .slice(0, remainingSlots);
632
633
const buttons: ReactNode[] = [];
634
0 commit comments