Show Working message after "summarizing conversation..." (#247268)

This commit is contained in:
Rob Lourens
2025-04-23 18:28:44 -07:00
committed by GitHub
parent f02abe34f9
commit ed40c856ec
@@ -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;
}