Merge pull request #305759 from microsoft/eli/chat-export-import-icon

add chat import and export icons to agent debug logs
This commit is contained in:
Elijah King
2026-03-27 14:04:50 -07:00
committed by GitHub
2 changed files with 4 additions and 2 deletions

View File

@@ -47,6 +47,8 @@ export const codiconsDerived = {
gitFetch: register('git-fetch', 0xec1d),
lightbulbSparkleAutofix: register('lightbulb-sparkle-autofix', 0xec1f),
debugBreakpointPending: register('debug-breakpoint-pending', 0xebd9),
chatImport: register('chat-import', 0xec86),
chatExport: register('chat-export', 0xec87),
} as const;

View File

@@ -117,7 +117,7 @@ export function registerChatOpenAgentDebugPanelAction() {
super({
id: 'workbench.action.chat.exportAgentDebugLog',
title: localize2('chat.exportAgentDebugLog.label', "Export Agent Debug Log..."),
icon: Codicon.desktopDownload,
icon: Codicon.chatExport,
f1: true,
category: Categories.Developer,
precondition: ChatContextKeys.enabled,
@@ -182,7 +182,7 @@ export function registerChatOpenAgentDebugPanelAction() {
super({
id: 'workbench.action.chat.importAgentDebugLog',
title: localize2('chat.importAgentDebugLog.label', "Import Agent Debug Log..."),
icon: Codicon.cloudUpload,
icon: Codicon.chatImport,
f1: true,
category: Categories.Developer,
precondition: ChatContextKeys.enabled,