Skip to content

Commit ccd3092

Browse files
authored
Fix copying a suggested followup question in chat (microsoft#180965)
1 parent 38f1a66 commit ccd3092

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/vs/workbench/contrib/interactiveSession/browser/actions/interactiveSessionCopyActions.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,5 +76,5 @@ export function registerInteractiveSessionCopyActions() {
7676

7777
function stringifyItem(item: IInteractiveRequestViewModel | IInteractiveResponseViewModel): string {
7878
return isRequestVM(item) ?
79-
`${item.username}: ${item.message}` : `${item.username}: ${item.response.value}`;
79+
`${item.username}: ${item.messageText}` : `${item.username}: ${item.response.value}`;
8080
}

0 commit comments

Comments
 (0)