diff --git a/src/@types/vscode.proposed.chatParticipantAdditions.d.ts b/src/@types/vscode.proposed.chatParticipantAdditions.d.ts index 71520fa1ec..aa7001a3d2 100644 --- a/src/@types/vscode.proposed.chatParticipantAdditions.d.ts +++ b/src/@types/vscode.proposed.chatParticipantAdditions.d.ts @@ -105,6 +105,7 @@ declare module 'vscode' { isComplete?: boolean; toolSpecificData?: ChatTerminalToolInvocationData; fromSubAgent?: boolean; + presentation?: 'hidden' | 'hiddenAfterComplete' | undefined; constructor(toolName: string, toolCallId: string, isError?: boolean); } diff --git a/webviews/editorWebview/index.css b/webviews/editorWebview/index.css index 4716e0152e..de2da14d03 100644 --- a/webviews/editorWebview/index.css +++ b/webviews/editorWebview/index.css @@ -501,6 +501,10 @@ body button .icon { margin-right: 6px; } +.overview-title h2 a { + user-select: text; +} + .overview-title textarea { min-height: 50px; }