add chat import and export icons to agent debug logs

This commit is contained in:
Elijah King
2026-03-27 11:04:25 -07:00
parent 7466d76783
commit 89569842dc
2 changed files with 4 additions and 2 deletions

View File

@@ -657,4 +657,6 @@ export const codiconsLibrary = {
openInWindow: register('open-in-window', 0xec83),
newSession: register('new-session', 0xec84),
terminalSecure: register('terminal-secure', 0xec85),
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,