File tree 1 file changed +4
-2
lines changed
1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -259,7 +259,9 @@ export class WorkspaceProvider implements vscode.TreeDataProvider<vscode.TreeIte
259
259
for ( const app of element . agent . apps ) {
260
260
if ( app . statuses && app . statuses . length > 0 ) {
261
261
for ( const status of app . statuses ) {
262
- // Show all statuses, not just ones needing attention
262
+ // Show all statuses, not just ones needing attention.
263
+ // We need to do this for now because the reporting isn't super accurate
264
+ // yet.
263
265
appStatuses . push (
264
266
new AppStatusTreeItem ( {
265
267
name : status . icon ,
@@ -449,7 +451,7 @@ class AgentTreeItem extends OpenableTreeItem {
449
451
450
452
if ( agent . apps && agent . apps . length > 0 ) {
451
453
// Add an icon to indicate this agent has running apps
452
- this . label = "🖐️ " + this . label
454
+ this . label = this . label
453
455
}
454
456
}
455
457
}
You can’t perform that action at this time.
0 commit comments