File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -246,7 +246,7 @@ export class MainThreadChatAgents2 extends Disposable implements MainThreadChatA
246
246
const [ progress , responsePartHandle ] = Array . isArray ( item ) ? item : [ item ] ;
247
247
248
248
const revivedProgress = progress . kind === 'notebookEdit'
249
- ? ChatNotebookEdit . fromChatEdit ( revive ( progress ) )
249
+ ? ChatNotebookEdit . fromChatEdit ( progress )
250
250
: revive ( progress ) as IChatProgress ;
251
251
252
252
if ( revivedProgress . kind === 'notebookEdit'
@@ -427,7 +427,7 @@ namespace ChatNotebookEdit {
427
427
export function fromChatEdit ( part : IChatNotebookEditDto ) : IChatNotebookEdit {
428
428
return {
429
429
kind : 'notebookEdit' ,
430
- uri : part . uri ,
430
+ uri : URI . revive ( part . uri ) ,
431
431
done : part . done ,
432
432
edits : part . edits . map ( NotebookDto . fromCellEditOperationDto )
433
433
} ;
Original file line number Diff line number Diff line change @@ -2176,7 +2176,7 @@ export interface IWorkspaceEditEntryMetadataDto {
2176
2176
}
2177
2177
2178
2178
export interface IChatNotebookEditDto {
2179
- uri : URI ;
2179
+ uri : UriComponents ;
2180
2180
edits : ICellEditOperationDto [ ] ;
2181
2181
kind : 'notebookEdit' ;
2182
2182
done ?: boolean ;
You can’t perform that action at this time.
0 commit comments