mirror of
https://github.com/n8n-io/n8n.git
synced 2025-01-23 10:32:17 -08:00
🐛 Fix typo in Saleforce Node (#2534)
This commit is contained in:
parent
1854d505b8
commit
76d79a6256
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue