Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit99f3b1d

Browse files
committed
working with goose and claude
1 parent08c93ae commit99f3b1d

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-
constneedsAttention=[]
258+
constappStatuses=[]
259259
for(constappofelement.agent.apps){
260260
if(app.statuses&&app.statuses.length>0){
261261
for(conststatusofapp.statuses){
262-
if(status.needs_user_attention){
263-
needsAttention.push(
264-
newAppStatusTreeItem({
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+
newAppStatusTreeItem({
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 showthe section if it hasitems that need attention
277-
if(needsAttention.length>0){
278-
constappStatusSection=newSectionTreeItem("Applications in need of attention",needsAttention)
275+
//Showthe section if it hasany items
276+
if(appStatuses.length>0){
277+
constappStatusSection=newSectionTreeItem("Application Statuses",appStatuses)
279278
items.push(appStatusSection)
280279
}
281280
}
@@ -353,7 +352,7 @@ class SectionTreeItem extends vscode.TreeItem {
353352
label:string,
354353
publicreadonlychildren: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)

[8]ページ先頭

©2009-2025 Movatter.jp