We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 98f58ab + 156249c commit 3957330Copy full SHA for 3957330
1 file changed
src/helpers.ts
@@ -60,7 +60,7 @@ export const setNoteStatus = (
60
};
61
62
const updateNoteStatus = (
63
- comment: vscode.Comment,
+ comment: vscode.Comment | any,
64
status: NoteStatus,
65
firstComment: boolean,
66
) => {
@@ -77,6 +77,7 @@ const updateNoteStatus = (
77
78
// Set new status
79
comment.body = `[${status}] ${comment.body}`;
80
+ comment.savedBody = comment.body;
81
82
83
export const mergeThread = (local: vscode.CommentThread, remote: any): boolean => {
0 commit comments