mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-02 00:09:30 +01:00
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:
@@ -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;
|
||||
|
||||
|
||||
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user