mirror of
https://github.com/n8n-io/n8n.git
synced 2024-12-23 11:44:06 -08:00
fix: Fist name to First Name in certain nodes (no-changelog) (#6404)
* Update PersonDescription.ts * Update LeadDescription.ts * Update PersonDescription.ts
This commit is contained in:
parent
cc44af9243
commit
14fba6421e
|
@ -52,7 +52,7 @@ export const personFields: INodeProperties[] = [
|
|||
/* person:create */
|
||||
/* -------------------------------------------------------------------------- */
|
||||
{
|
||||
displayName: 'Fist Name',
|
||||
displayName: 'First Name',
|
||||
name: 'firstName',
|
||||
type: 'string',
|
||||
required: true,
|
||||
|
@ -154,7 +154,7 @@ export const personFields: INodeProperties[] = [
|
|||
},
|
||||
options: [
|
||||
{
|
||||
displayName: 'Fist Name',
|
||||
displayName: 'First Name',
|
||||
name: 'firstName',
|
||||
type: 'string',
|
||||
default: '',
|
||||
|
|
|
@ -229,7 +229,7 @@ export const leadFields: INodeProperties[] = [
|
|||
description: 'Email address for the lead',
|
||||
},
|
||||
{
|
||||
displayName: 'Fist Name',
|
||||
displayName: 'First Name',
|
||||
name: 'firstname',
|
||||
type: 'string',
|
||||
default: '',
|
||||
|
@ -498,7 +498,7 @@ export const leadFields: INodeProperties[] = [
|
|||
description: 'Email address for the lead',
|
||||
},
|
||||
{
|
||||
displayName: 'Fist Name',
|
||||
displayName: 'First Name',
|
||||
name: 'firstname',
|
||||
type: 'string',
|
||||
default: '',
|
||||
|
|
|
@ -41,7 +41,7 @@ export const personFields: INodeProperties[] = [
|
|||
description: 'Email address (e.g – mbenioff@salesforce.com)',
|
||||
},
|
||||
{
|
||||
displayName: 'Fist Name',
|
||||
displayName: 'First Name',
|
||||
name: 'firstname',
|
||||
type: 'string',
|
||||
default: '',
|
||||
|
|
Loading…
Reference in a new issue