File tree Expand file tree Collapse file tree 3 files changed +4
-3
lines changed
webview-ui/src/components/chat/context-management Expand file tree Collapse file tree 3 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 11import { useState } from "react"
22import { useTranslation } from "react-i18next"
33import { VSCodeBadge } from "@vscode/webview-ui-toolkit/react"
4+ import { FoldVertical } from "lucide-react"
45
56import type { ContextCondense } from "@roo-code/types"
67
@@ -31,7 +32,7 @@ export function CondensationResultRow({ data }: CondensationResultRowProps) {
3132 className = "flex items-center justify-between cursor-pointer select-none"
3233 onClick = { ( ) => setIsExpanded ( ! isExpanded ) } >
3334 < div className = "flex items-center gap-2 flex-grow" >
34- < span className = "codicon codicon-fold text-blue-400" />
35+ < FoldVertical size = { 16 } className = "text-blue-400" />
3536 < span className = "font-bold text-vscode-foreground" >
3637 { t ( "chat:contextManagement.condensation.title" ) }
3738 </ span >
Original file line number Diff line number Diff line change @@ -21,7 +21,6 @@ export function InProgressRow({ eventType }: InProgressRowProps) {
2121 return (
2222 < div className = "flex items-center gap-2" >
2323 < ProgressIndicator />
24- < span className = "codicon codicon-fold text-blue-400" />
2524 < span className = "font-bold text-vscode-foreground" > { progressText } </ span >
2625 </ div >
2726 )
Original file line number Diff line number Diff line change 11import { useState } from "react"
22import { useTranslation } from "react-i18next"
3+ import { FoldVertical } from "lucide-react"
34
45import type { ContextTruncation } from "@roo-code/types"
56
@@ -32,7 +33,7 @@ export function TruncationResultRow({ data }: TruncationResultRowProps) {
3233 className = "flex items-center justify-between cursor-pointer select-none"
3334 onClick = { ( ) => setIsExpanded ( ! isExpanded ) } >
3435 < div className = "flex items-center gap-2 flex-grow" >
35- < span className = "codicon codicon-fold text-blue-400" />
36+ < FoldVertical size = { 16 } className = "text-blue-400" />
3637 < span className = "font-bold text-vscode-foreground" >
3738 { t ( "chat:contextManagement.truncation.title" ) }
3839 </ span >
You can’t perform that action at this time.
0 commit comments