We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 98f58ab commit 156249cCopy full SHA for 156249c
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