mirror of
https://github.com/RooVetGit/Roo-Code.git
synced 2026-08-28 05:27:24 +00:00
Quickfix: Change cloud-download icon to more appropriate desktop-download icon. (#2802)
This commit is contained in:
parent
eeb73c3c06
commit
cf54c7d820
2 changed files with 2 additions and 2 deletions
|
|
@ -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 && (
|
||||
<>
|
||||
|
|
|
|||
|
|
@ -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>
|
||||
)
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue