File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed
src/vs/workbench/contrib/chat/common Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change 3
3
* Licensed under the MIT License. See License.txt in the project root for license information.
4
4
*--------------------------------------------------------------------------------------------*/
5
5
6
+ import { localize } from 'vs/nls' ;
6
7
import { asArray , firstOrDefault } from 'vs/base/common/arrays' ;
7
8
import { DeferredPromise } from 'vs/base/common/async' ;
8
9
import { Emitter , Event } from 'vs/base/common/event' ;
@@ -251,7 +252,7 @@ export class Response implements IResponse {
251
252
} else if ( part . kind === 'command' ) {
252
253
return part . command . title ;
253
254
} else if ( part . kind === 'textEditGroup' ) {
254
- return '' ;
255
+ return localize ( 'editsSummary' , "Made changes." ) ;
255
256
} else if ( part . kind === 'progressMessage' ) {
256
257
return '' ;
257
258
} else if ( part . kind === 'confirmation' ) {
You can’t perform that action at this time.
0 commit comments