We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0ae5775 commit 67d32f2Copy full SHA for 67d32f2
src/vs/workbench/contrib/chat/browser/chatListRenderer.ts
@@ -440,8 +440,8 @@ export class ChatListItemRenderer extends Disposable implements ITreeRenderer<Ch
440
}
441
442
// TODO: @justschen decide if we want to hide the header for requests or not
443
- // const shouldShowHeader = isResponseVM(element) && !this.rendererOptions.noHeader;
444
- // templateData.header?.classList.toggle('hidden', !shouldShowHeader);
+ const shouldShowHeader = isResponseVM(element) && !this.rendererOptions.noHeader;
+ templateData.header?.classList.toggle('hidden', !shouldShowHeader);
445
446
// Do a progressive render if
447
// - This the last response in the list
0 commit comments