From f93f0f9f7b68020ae26242b91ad36793a2a9ab66 Mon Sep 17 00:00:00 2001 From: Oleg Solomko Date: Wed, 29 Jan 2025 09:21:48 -0800 Subject: [PATCH] [prompts]: change LightBulb icon to the Bookmark one --- .../contrib/chat/browser/actions/chatContextActions.ts | 2 +- .../instructionsAttachment/instructionsAttachment.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/vs/workbench/contrib/chat/browser/actions/chatContextActions.ts b/src/vs/workbench/contrib/chat/browser/actions/chatContextActions.ts index 65710233e74b1..4123c4b8d3471 100644 --- a/src/vs/workbench/contrib/chat/browser/actions/chatContextActions.ts +++ b/src/vs/workbench/contrib/chat/browser/actions/chatContextActions.ts @@ -812,7 +812,7 @@ export class AttachContextAction extends Action2 { kind: 'prompt-instructions', id: 'prompt-instructions', label: localize('promptWithEllipsis', 'Prompt...'), - iconClass: ThemeIcon.asClassName(Codicon.lightbulbSparkle), + iconClass: ThemeIcon.asClassName(Codicon.bookmark), }); } diff --git a/src/vs/workbench/contrib/chat/browser/attachments/instructionsAttachment/instructionsAttachment.ts b/src/vs/workbench/contrib/chat/browser/attachments/instructionsAttachment/instructionsAttachment.ts index c5ee5d143e5fc..f959d7eabf118 100644 --- a/src/vs/workbench/contrib/chat/browser/attachments/instructionsAttachment/instructionsAttachment.ts +++ b/src/vs/workbench/contrib/chat/browser/attachments/instructionsAttachment/instructionsAttachment.ts @@ -138,7 +138,7 @@ export class InstructionsAttachmentWidget extends Disposable { hidePath: true, range: undefined, title, - icon: ThemeIcon.fromId(Codicon.lightbulbSparkle.id), + icon: ThemeIcon.fromId(Codicon.bookmark.id), extraClasses: [], }); this.domNode.ariaLabel = ariaLabel;