Skip to content

Commit 99f3b1d

Browse files
committed
working with goose and claude
1 parent 08c93ae commit 99f3b1d

File tree

1 file changed

+14
-15
lines changed

1 file changed

+14
-15
lines changed

src/workspacesProvider.ts

Lines changed: 14 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -255,27 +255,26 @@ export class WorkspaceProvider implements vscode.TreeDataProvider<vscode.TreeIte
255255

256256
// Add app status section with collapsible header
257257
if (element.agent.apps && element.agent.apps.length > 0) {
258-
const needsAttention = []
258+
const appStatuses = []
259259
for (const app of element.agent.apps) {
260260
if (app.statuses && app.statuses.length > 0) {
261261
for (const status of app.statuses) {
262-
if (status.needs_user_attention) {
263-
needsAttention.push(
264-
new AppStatusTreeItem({
265-
name: status.message,
266-
command: app.command,
267-
status: status.state,
268-
workspace_name: element.workspaceName,
269-
}),
270-
)
271-
}
262+
// Show all statuses, not just ones needing attention
263+
appStatuses.push(
264+
new AppStatusTreeItem({
265+
name: status.message,
266+
command: app.command,
267+
status: status.state,
268+
workspace_name: element.workspaceName,
269+
}),
270+
)
272271
}
273272
}
274273
}
275274

276-
// Only show the section if it has items that need attention
277-
if (needsAttention.length > 0) {
278-
const appStatusSection = new SectionTreeItem("Applications in need of attention", needsAttention)
275+
// Show the section if it has any items
276+
if (appStatuses.length > 0) {
277+
const appStatusSection = new SectionTreeItem("Application Statuses", appStatuses)
279278
items.push(appStatusSection)
280279
}
281280
}
@@ -353,7 +352,7 @@ class SectionTreeItem extends vscode.TreeItem {
353352
label: string,
354353
public readonly children: vscode.TreeItem[],
355354
) {
356-
super(label, vscode.TreeItemCollapsibleState.Expanded)
355+
super(label, vscode.TreeItemCollapsibleState.Collapsed)
357356
this.contextValue = "coderSectionHeader"
358357
}
359358
}

0 commit comments

Comments
 (0)