mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 10:02:05 +00:00
🐛 Fix typo in Saleforce Node (#2534)
This commit is contained in:
@@ -1744,8 +1744,8 @@ export class Salesforce implements INodeType {
|
||||
if (additionalFields.type !== undefined) {
|
||||
body.Type = additionalFields.type as string;
|
||||
}
|
||||
if (additionalFields.ammount !== undefined) {
|
||||
body.Amount = additionalFields.ammount as number;
|
||||
if (additionalFields.amount !== undefined) {
|
||||
body.Amount = additionalFields.amount as number;
|
||||
}
|
||||
if (additionalFields.owner !== undefined) {
|
||||
body.OwnerId = additionalFields.owner as string;
|
||||
@@ -1813,8 +1813,8 @@ export class Salesforce implements INodeType {
|
||||
if (updateFields.type !== undefined) {
|
||||
body.Type = updateFields.type as string;
|
||||
}
|
||||
if (updateFields.ammount !== undefined) {
|
||||
body.Amount = updateFields.ammount as number;
|
||||
if (updateFields.amount !== undefined) {
|
||||
body.Amount = updateFields.amount as number;
|
||||
}
|
||||
if (updateFields.owner !== undefined) {
|
||||
body.OwnerId = updateFields.owner as string;
|
||||
|
||||
Reference in New Issue
Block a user