diff --git a/src/vs/workbench/contrib/chat/browser/actions/chatContinueInAction.ts b/src/vs/workbench/contrib/chat/browser/actions/chatContinueInAction.ts index 782105a1132..d865ffbe5c1 100644 --- a/src/vs/workbench/contrib/chat/browser/actions/chatContinueInAction.ts +++ b/src/vs/workbench/contrib/chat/browser/actions/chatContinueInAction.ts @@ -126,7 +126,7 @@ export class ChatContinueInSessionActionItem extends ActionWidgetDropdownActionV } protected override renderLabel(element: HTMLElement): IDisposable | null { - const icon = this.contextKeyService.contextMatchesRules(ChatContextKeys.remoteJobCreating) ? Codicon.sync : Codicon.export; + const icon = this.contextKeyService.contextMatchesRules(ChatContextKeys.remoteJobCreating) ? Codicon.sync : Codicon.indent; element.classList.add(...ThemeIcon.asClassNameArray(icon)); return super.renderLabel(element);