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 a35d42b commit d0bff74Copy full SHA for d0bff74
src/vs/workbench/contrib/chat/browser/chatListRenderer.ts
@@ -342,7 +342,11 @@ export class ChatListItemRenderer extends Disposable implements ITreeRenderer<Ch
342
}
343
344
templateData.detail.textContent = progressMsg;
345
- templateData.detail.title = element.slashCommand?.description ?? '';
+ if (element.agent) {
346
+ templateData.detail.title = progressMsg + (element.slashCommand?.description ? `\n${element.slashCommand.description}` : '');
347
+ } else {
348
+ templateData.detail.title = '';
349
+ }
350
351
352
private renderAvatar(element: ChatTreeItem, templateData: IChatListItemTemplate): void {
0 commit comments