mirror of
https://github.com/microsoft/vscode.git
synced 2026-05-14 12:11:43 +01:00
Show Working message after "summarizing conversation..." (#247268)
This commit is contained in:
@@ -839,7 +839,9 @@ export class ChatListItemRenderer extends Disposable implements ITreeRenderer<Ch
|
||||
!lastPart ||
|
||||
lastPart.kind === 'references' ||
|
||||
(lastPart.kind === 'toolInvocation' && (lastPart.isComplete || lastPart.presentation === 'hidden')) ||
|
||||
((lastPart.kind === 'textEditGroup' || lastPart.kind === 'notebookEditGroup') && lastPart.done && !partsToRender.some(part => part.kind === 'toolInvocation' && !part.isComplete))) {
|
||||
((lastPart.kind === 'textEditGroup' || lastPart.kind === 'notebookEditGroup') && lastPart.done && !partsToRender.some(part => part.kind === 'toolInvocation' && !part.isComplete)) ||
|
||||
(lastPart.kind === 'progressTask' && lastPart.deferred.isSettled)
|
||||
) {
|
||||
return true;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user