mirror of
https://github.com/n8n-io/n8n.git
synced 2025-03-05 20:50:17 -08:00
⚡ Revert wrong bugfix and fix typo
This commit is contained in:
parent
db47892e77
commit
79ccf6a2e9
|
@ -18,12 +18,12 @@ export const contactListOperations = [
|
||||||
{
|
{
|
||||||
name: 'Add',
|
name: 'Add',
|
||||||
value: 'add',
|
value: 'add',
|
||||||
description: 'Add contactt to a list',
|
description: 'Add contact to a list',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'Remove',
|
name: 'Remove',
|
||||||
value: 'remove',
|
value: 'remove',
|
||||||
description: 'Remove contactt from a list',
|
description: 'Remove contact from a list',
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
default: 'add',
|
default: 'add',
|
||||||
|
@ -71,6 +71,7 @@ export const contactListFields = [
|
||||||
},
|
},
|
||||||
description: 'Contact ID',
|
description: 'Contact ID',
|
||||||
},
|
},
|
||||||
|
|
||||||
// ----------------------------------
|
// ----------------------------------
|
||||||
// contactList:remove
|
// contactList:remove
|
||||||
// ----------------------------------
|
// ----------------------------------
|
||||||
|
|
|
@ -187,4 +187,3 @@ export function activeCampaignDefaultGetAllProperties(resource: string, operatio
|
||||||
},
|
},
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -861,7 +861,7 @@ export class EditImage implements INodeType {
|
||||||
cleanupFunctions.push(cleanup);
|
cleanupFunctions.push(cleanup);
|
||||||
fsWriteFileAsync(fd, Buffer.from(item.binary![dataPropertyNameComposite as string].data, BINARY_ENCODING));
|
fsWriteFileAsync(fd, Buffer.from(item.binary![dataPropertyNameComposite as string].data, BINARY_ENCODING));
|
||||||
|
|
||||||
gmInstance = gmInstance.compose(path).geometry(geometryString);
|
gmInstance = gmInstance.composite(path).geometry(geometryString);
|
||||||
} else if (operation === 'crop') {
|
} else if (operation === 'crop') {
|
||||||
const width = this.getNodeParameter('width') as number;
|
const width = this.getNodeParameter('width') as number;
|
||||||
const height = this.getNodeParameter('height') as number;
|
const height = this.getNodeParameter('height') as number;
|
||||||
|
|
Loading…
Reference in a new issue