From 077b203b23b2370da75907b5c98cedc9d4088729 Mon Sep 17 00:00:00 2001 From: Rob Lourens Date: Tue, 24 Sep 2024 08:44:11 -0700 Subject: [PATCH] Remove bold text --- chat-sample/src/extension.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chat-sample/src/extension.ts b/chat-sample/src/extension.ts index b18e68de..bd492d40 100644 --- a/chat-sample/src/extension.ts +++ b/chat-sample/src/extension.ts @@ -46,7 +46,7 @@ function registerChatTool(context: vscode.ExtensionContext) { const params = options.parameters as ITabCountParameters; return { title: 'Count the number of open tabs', - message: new vscode.MarkdownString(`${options.participantName} will count the number of **open tabs**` + (params.tabGroup !== undefined ? ` in tab group ${params.tabGroup}` : '')) + message: new vscode.MarkdownString(`${options.participantName} will count the number of open tabs` + (params.tabGroup !== undefined ? ` in tab group ${params.tabGroup}` : '')) }; } }));