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 38f1a66 commit ccd3092Copy full SHA for ccd3092
src/vs/workbench/contrib/interactiveSession/browser/actions/interactiveSessionCopyActions.ts
@@ -76,5 +76,5 @@ export function registerInteractiveSessionCopyActions() {
76
77
function stringifyItem(item: IInteractiveRequestViewModel | IInteractiveResponseViewModel): string {
78
return isRequestVM(item) ?
79
- `${item.username}: ${item.message}` : `${item.username}: ${item.response.value}`;
+ `${item.username}: ${item.messageText}` : `${item.username}: ${item.response.value}`;
80
}
0 commit comments