Skip to content

Commit

Permalink
🐛 Fix comment create with assignee ID (repair field name) (#906)
Browse files Browse the repository at this point in the history
  • Loading branch information
vvvictor07 authored Aug 31, 2020
1 parent 6fdbdb5 commit bb4d7a4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/nodes-base/nodes/ClickUp/ClickUp.node.ts
Original file line number Diff line number Diff line change
Expand Up @@ -414,7 +414,7 @@ export class ClickUp implements INodeType {
comment_text: commentText,
};
if (additionalFields.assignee) {
body.assigneeId = additionalFields.assignee as string;
body.assignee = parseInt(additionalFields.assignee as string, 10);
}
if (additionalFields.notifyAll) {
body.notify_all = additionalFields.notifyAll as boolean;
Expand Down

0 comments on commit bb4d7a4

Please sign in to comment.