Skip to content

Commit 4968600

Browse files
authored
Your work will be continued in this pull request. (microsoft#258381)
Your work will be continued in this pull request.
1 parent 606dfbf commit 4968600

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

src/vs/workbench/contrib/chat/browser/actions/chatExecuteActions.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -667,6 +667,12 @@ export class CreateRemoteAgentJobAction extends Action2 {
667667

668668
if (result && typeof result === 'object') { /* _version === 2 */
669669
chatModel.acceptResponseProgress(addedRequest, { kind: 'pullRequest', ...result });
670+
chatModel.acceptResponseProgress(addedRequest, {
671+
kind: 'markdownContent', content: new MarkdownString(
672+
localize('remoteAgentResponse2', "Your work will be continued in this pull request."), // TODO(jospicer): Generalize this
673+
CreateRemoteAgentJobAction.markdownStringTrustedOptions
674+
)
675+
});
670676
} else if (typeof result === 'string') {
671677
chatModel.acceptResponseProgress(addedRequest, {
672678
kind: 'markdownContent',

0 commit comments

Comments
 (0)