Various continue on comments fixes (#195260)

* Various continue on comments fixes
Part of #194288

* Fix continue-on reply being restored before root comment
Fix duplicate continue-on comments

* Include monaco.d.ts changes
This commit is contained in:
Alex Ross
2023-10-10 18:07:08 +02:00
committed by GitHub
parent 5f83ca061a
commit 42a991cd43
10 changed files with 93 additions and 37 deletions

View File

@@ -158,7 +158,7 @@ export function createExtHostComments(mainContext: IMainContext, commands: ExtHo
return commentController.value;
}
$createCommentThreadTemplate(commentControllerHandle: number, uriComponents: UriComponents, range: IRange | undefined): void {
async $createCommentThreadTemplate(commentControllerHandle: number, uriComponents: UriComponents, range: IRange | undefined): Promise<void> {
const commentController = this._commentControllers.get(commentControllerHandle);
if (!commentController) {