mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 18:12:04 +00:00
fix(Webflow Node): Fix issue with publishing items (#11982)
This commit is contained in:
@@ -115,9 +115,8 @@ export async function execute(
|
||||
responseData = await webflowApiRequest.call(
|
||||
this,
|
||||
'POST',
|
||||
`/collections/${collectionId}/items`,
|
||||
`/collections/${collectionId}/items${live ? '/live' : ''}`,
|
||||
body,
|
||||
{ live },
|
||||
);
|
||||
|
||||
const executionData = this.helpers.constructExecutionMetaData(
|
||||
|
||||
@@ -124,9 +124,8 @@ export async function execute(
|
||||
responseData = await webflowApiRequest.call(
|
||||
this,
|
||||
'PATCH',
|
||||
`/collections/${collectionId}/items/${itemId}`,
|
||||
`/collections/${collectionId}/items/${itemId}${live ? '/live' : ''}`,
|
||||
body,
|
||||
{ live },
|
||||
);
|
||||
|
||||
const executionData = this.helpers.constructExecutionMetaData(
|
||||
|
||||
Reference in New Issue
Block a user