File tree Expand file tree Collapse file tree 1 file changed +3
-0
lines changed
webview-ui/src/components/chat Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -353,6 +353,7 @@ export const ChatRowContent = ({
353353 switch ( tool . tool ) {
354354 case "editedExistingFile" :
355355 case "appliedDiff" :
356+ case "searchAndReplace" :
356357 // Check if this is a batch diff request
357358 if ( message . type === "ask" && tool . batchDiffs && Array . isArray ( tool . batchDiffs ) ) {
358359 return (
@@ -397,6 +398,7 @@ export const ChatRowContent = ({
397398 isLoading = { message . partial }
398399 isExpanded = { isExpanded }
399400 onToggleExpand = { handleToggleExpand }
401+ diffStats = { tool . diffStats ?? undefined }
400402 />
401403 </ div >
402404 </ >
@@ -501,6 +503,7 @@ export const ChatRowContent = ({
501503 isLoading = { message . partial }
502504 isExpanded = { isExpanded }
503505 onToggleExpand = { handleToggleExpand }
506+ diffStats = { tool . diffStats ?? undefined }
504507 onJumpToFile = { ( ) => vscode . postMessage ( { type : "openFile" , text : "./" + tool . path } ) }
505508 />
506509 </ div >
You can’t perform that action at this time.
0 commit comments