From c64c35d72e45281514a14fc1888f47d372c0d1fa Mon Sep 17 00:00:00 2001 From: "Brandon Waterloo [MSFT]" <36966225+bwateratmsft@users.noreply.github.com> Date: Thu, 19 Dec 2024 14:18:58 -0500 Subject: [PATCH] Different icon for starting container vs. one that is healthy (#4436) --- src/tree/containers/ContainerTreeItem.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/tree/containers/ContainerTreeItem.ts b/src/tree/containers/ContainerTreeItem.ts index 0ac5c576bb..957de2cd76 100644 --- a/src/tree/containers/ContainerTreeItem.ts +++ b/src/tree/containers/ContainerTreeItem.ts @@ -95,6 +95,8 @@ export class ContainerTreeItem extends ToolTipParentTreeItem implements MultiSel public get iconPath(): vscode.ThemeIcon { if (this._item.status?.includes('(unhealthy)')) { return new vscode.ThemeIcon('warning', new vscode.ThemeColor('problemsWarningIcon.foreground')); + } else if (this._item.status?.includes('(health: starting)')) { + return new vscode.ThemeIcon('debug-rerun', new vscode.ThemeColor('debugIcon.startForeground')); } else { return getContainerStateIcon(this._item.state); }