Comment thread node so extension can use get/set body (#168605)

This commit is contained in:
Alex Ross
2022-12-09 15:57:09 +01:00
committed by GitHub
parent fa181ccad5
commit 419d026431

View File

@@ -136,7 +136,7 @@ export function createExtHostComments(mainContext: IMainContext, commands: ExtHo
if (typeof comment.body === 'string') {
comment.body = body;
} else {
comment.body.value = body;
comment.body = new types.MarkdownString(body);
}
return comment;
}