Skip to content

Commit

Permalink
feat(InvoiceNinja Node): Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
CodeShakingSheep committed Apr 29, 2024
1 parent e3db4e3 commit 8a081c8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ export const clientFields: INodeProperties[] = [
default: {},
options: [
{
name: 'contacstValues',
name: 'contactsValues',
displayName: 'Contact',
values: [
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -302,7 +302,7 @@ export class InvoiceNinja implements INodeType {
body.website = additionalFields.website as string;
}
const contactsValues = (this.getNodeParameter('contactsUi', i) as IDataObject)
.contacstValues as IDataObject[];
.contactsValues as IDataObject[];
if (contactsValues) {
const contacts: IContact[] = [];
for (const contactValue of contactsValues) {
Expand Down

0 comments on commit 8a081c8

Please sign in to comment.