explicit reply comment thread command

This commit is contained in:
Peng Lyu
2018-04-19 10:36:28 -07:00
parent 4ef7518943
commit 8730f9688f
7 changed files with 26 additions and 26 deletions

View File

@@ -118,7 +118,7 @@ function convertCommentThread(vscodeCommentThread: vscode.CommentThread, command
resource: vscodeCommentThread.resource.toString(),
range: extHostTypeConverter.fromRange(vscodeCommentThread.range),
comments: vscodeCommentThread.comments.map(convertComment),
actions: vscodeCommentThread.actions.map(commandsConverter.toInternal)
reply: vscodeCommentThread.reply ? commandsConverter.toInternal(vscodeCommentThread.reply) : null
};
}