Skip to content

Commit dfaf67b

Browse files
committed
Fix missed terminal2 -> terminal case
1 parent c18ff42 commit dfaf67b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/vs/workbench/contrib/chat/browser/chatResponseAccessibleView.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ class ChatResponseAccessibleProvider extends Disposable implements IAccessibleVi
7474
const message = typeof toolInvocation.confirmationMessages.message === 'string' ? toolInvocation.confirmationMessages.message : stripIcons(renderAsPlaintext(toolInvocation.confirmationMessages.message));
7575
let input = '';
7676
if (toolInvocation.toolSpecificData) {
77-
input = toolInvocation.toolSpecificData?.kind === 'terminal2'
77+
input = toolInvocation.toolSpecificData?.kind === 'terminal'
7878
? toolInvocation.toolSpecificData.commandLine.userEdited ?? toolInvocation.toolSpecificData.commandLine.toolEdited ?? toolInvocation.toolSpecificData.commandLine.original
7979
: toolInvocation.toolSpecificData?.kind === 'extensions'
8080
? JSON.stringify(toolInvocation.toolSpecificData.extensions)

0 commit comments

Comments
 (0)