Skip to content
This repository was archived by the owner on Jul 20, 2026. It is now read-only.

Commit c64c35d

Browse files
authored
Different icon for starting container vs. one that is healthy (#4436)
1 parent 62dcfc5 commit c64c35d

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

src/tree/containers/ContainerTreeItem.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,8 @@ export class ContainerTreeItem extends ToolTipParentTreeItem implements MultiSel
9595
public get iconPath(): vscode.ThemeIcon {
9696
if (this._item.status?.includes('(unhealthy)')) {
9797
return new vscode.ThemeIcon('warning', new vscode.ThemeColor('problemsWarningIcon.foreground'));
98+
} else if (this._item.status?.includes('(health: starting)')) {
99+
return new vscode.ThemeIcon('debug-rerun', new vscode.ThemeColor('debugIcon.startForeground'));
98100
} else {
99101
return getContainerStateIcon(this._item.state);
100102
}

0 commit comments

Comments
 (0)