mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 18:12:04 +00:00
🐛 Fix another wrong property on ClickUp-Node
This commit is contained in:
@@ -371,8 +371,8 @@ export class ClickUp implements INodeType {
|
|||||||
const body: IDataObject = {
|
const body: IDataObject = {
|
||||||
name,
|
name,
|
||||||
};
|
};
|
||||||
if (additionalFields.assigneeId) {
|
if (additionalFields.assignee) {
|
||||||
body.assignee = parseInt(additionalFields.assigneeId as string, 10);
|
body.assignee = parseInt(additionalFields.assignee as string, 10);
|
||||||
}
|
}
|
||||||
responseData = await clickupApiRequest.call(this, 'POST', `/checklist/${checklistId}/checklist_item`, body);
|
responseData = await clickupApiRequest.call(this, 'POST', `/checklist/${checklistId}/checklist_item`, body);
|
||||||
responseData = responseData.checklist;
|
responseData = responseData.checklist;
|
||||||
|
|||||||
Reference in New Issue
Block a user