mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 18:12:04 +00:00
🐛 Fix comment create with assignee ID (repair field name) (#906)
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user