File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
webview-ui/src/components/chat Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ import { IconButton } from "./IconButton"
1010
1111interface TaskActionsProps {
1212 item ?: HistoryItem
13- buttonsDisabled ? : boolean
13+ buttonsDisabled : boolean
1414 handleCondenseContext : ( taskId : string ) => void
1515}
1616
Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ export interface TaskHeaderProps {
2828 cacheReads ?: number
2929 totalCost : number
3030 contextTokens : number
31- buttonsDisabled ? : boolean
31+ buttonsDisabled : boolean
3232 handleCondenseContext : ( taskId : string ) => void
3333 onClose : ( ) => void
3434}
@@ -159,8 +159,8 @@ const TaskHeader = ({
159159 { ! totalCost && (
160160 < TaskActions
161161 item = { currentTaskItem }
162- handleCondenseContext = { handleCondenseContext }
163162 buttonsDisabled = { buttonsDisabled }
163+ handleCondenseContext = { handleCondenseContext }
164164 />
165165 ) }
166166 </ div >
You can’t perform that action at this time.
0 commit comments