File tree Expand file tree Collapse file tree 1 file changed +2
-5
lines changed
webview-ui/src/components/common Expand file tree Collapse file tree 1 file changed +2
-5
lines changed Original file line number Diff line number Diff line change @@ -2,6 +2,7 @@ import { memo, useMemo } from "react"
22import { getLanguageFromPath } from "@src/utils/getLanguageFromPath"
33import CodeBlock , { CODE_BLOCK_BG_COLOR } from "./CodeBlock"
44import { ToolProgressStatus } from "@roo/shared/ExtensionMessage"
5+ import { VSCodeProgressRing } from "@vscode/webview-ui-toolkit/react"
56
67interface CodeAccordianProps {
78 code ?: string
@@ -71,11 +72,7 @@ const CodeAccordian = ({
7172 } }
7273 className = { `${ isLoading ? "animate-pulse" : "" } ` }
7374 onClick = { isLoading ? undefined : onToggleExpand } >
74- { isLoading && (
75- < div className = "flex items-center" >
76- < span className = "codicon codicon-loading animate-spin mr-1" aria-label = "Loading" role = "status" />
77- </ div >
78- ) }
75+ { isLoading && < VSCodeProgressRing className = "size-3 mr-2" /> }
7976 { isFeedback || isConsoleLogs ? (
8077 < div style = { { display : "flex" , alignItems : "center" } } >
8178 < span
You can’t perform that action at this time.
0 commit comments