Skip to content

Commit cf54c7d

Browse files
authored
Quickfix: Change cloud-download icon to more appropriate desktop-download icon. (RooCodeInc#2802)
1 parent eeb73c3 commit cf54c7d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

webview-ui/src/components/chat/TaskHeader.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,7 @@ const TaskActions = ({ item }: { item: HistoryItem | undefined }) => {
212212
size="sm"
213213
title={t("chat:task.export")}
214214
onClick={() => vscode.postMessage({ type: "exportCurrentTask" })}>
215-
<span className="codicon codicon-cloud-download" />
215+
<span className="codicon codicon-desktop-download" />
216216
</Button>
217217
{!!item?.size && item.size > 0 && (
218218
<>

webview-ui/src/components/history/ExportButton.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ export const ExportButton = ({ itemId }: { itemId: string }) => {
1515
e.stopPropagation()
1616
vscode.postMessage({ type: "exportTaskWithId", text: itemId })
1717
}}>
18-
<span className="codicon codicon-cloud-download" />
18+
<span className="codicon codicon-desktop-download" />
1919
</Button>
2020
)
2121
}

0 commit comments

Comments
 (0)