Quickfix: Change cloud-download icon to more appropriate desktop-download icon. (#2802)

This commit is contained in:
Sacha Sayan 2025-04-20 21:19:42 -04:00 committed by GitHub
parent eeb73c3c06
commit cf54c7d820
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View file

@ -212,7 +212,7 @@ const TaskActions = ({ item }: { item: HistoryItem | undefined }) => {
size="sm"
title={t("chat:task.export")}
onClick={() => vscode.postMessage({ type: "exportCurrentTask" })}>
<span className="codicon codicon-cloud-download" />
<span className="codicon codicon-desktop-download" />
</Button>
{!!item?.size && item.size > 0 && (
<>

View file

@ -15,7 +15,7 @@ export const ExportButton = ({ itemId }: { itemId: string }) => {
e.stopPropagation()
vscode.postMessage({ type: "exportTaskWithId", text: itemId })
}}>
<span className="codicon codicon-cloud-download" />
<span className="codicon codicon-desktop-download" />
</Button>
)
}