File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -59,7 +59,7 @@ export abstract class CommentControllerBase extends Disposable {
5959 }
6060
6161 return editor . edit ( editBuilder => {
62- editBuilder . insert ( new vscode . Position ( 0 , 0 ) , '@copilot' ) ;
62+ editBuilder . insert ( new vscode . Position ( 0 , 0 ) , '@copilot ' ) ;
6363 } ) ;
6464 }
6565}
Original file line number Diff line number Diff line change @@ -413,7 +413,7 @@ export function AddComment({
413413 }
414414 : commentMethods ( isIssue ) ;
415415
416- const commentStartingText = pendingCommentText ?? ( isCopilotOnMyBehalf ? '@copilot' : '' ) ;
416+ const commentStartingText = pendingCommentText ?? ( isCopilotOnMyBehalf ? '@copilot ' : '' ) ;
417417
418418 return (
419419 < form id = "comment-form" ref = { form as React . MutableRefObject < HTMLFormElement > } className = "comment-form main-comment-form" onSubmit = { ( ) => submit ( textareaRef . current ?. value ?? '' ) } >
You can’t perform that action at this time.
0 commit comments