👕 Fix lint issue

This commit is contained in:
Jan Oberhauser 2022-05-10 11:01:03 +02:00
parent 86d2f7eff5
commit f16b550c72

View file

@ -1385,8 +1385,8 @@ export class EditImage implements INodeType {
const binaryData = await this.helpers.prepareBinaryData(Buffer.from(buffer)); const binaryData = await this.helpers.prepareBinaryData(Buffer.from(buffer));
newItem.binary![dataPropertyName as string] = { newItem.binary![dataPropertyName as string] = {
...newItem.binary![dataPropertyName as string], ...binaryData ...newItem.binary![dataPropertyName as string], ...binaryData,
} };
return resolve(newItem); return resolve(newItem);
}); });