We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
1 parentcd7c68c commit26f740dCopy full SHA for 26f740d
src/workspacesProvider.ts
@@ -259,7 +259,9 @@ export class WorkspaceProvider implements vscode.TreeDataProvider<vscode.TreeIte
259
for(constappofelement.agent.apps){
260
if(app.statuses&&app.statuses.length>0){
261
for(conststatusofapp.statuses){
262
-// Show all statuses, not just ones needing attention
+// 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.
265
appStatuses.push(
266
newAppStatusTreeItem({
267
name:status.icon,
@@ -449,7 +451,7 @@ class AgentTreeItem extends OpenableTreeItem {
449
451
450
452
if(agent.apps&&agent.apps.length>0){
453
// Add an icon to indicate this agent has running apps
-this.label="🖐️ "+this.label
454
+this.label=this.label
455
}
456
457