mirror of
https://github.com/n8n-io/n8n.git
synced 2024-12-24 04:04: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 */
|
/* person:create */
|
||||||
/* -------------------------------------------------------------------------- */
|
/* -------------------------------------------------------------------------- */
|
||||||
{
|
{
|
||||||
displayName: 'Fist Name',
|
displayName: 'First Name',
|
||||||
name: 'firstName',
|
name: 'firstName',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
required: true,
|
required: true,
|
||||||
|
@ -154,7 +154,7 @@ export const personFields: INodeProperties[] = [
|
||||||
},
|
},
|
||||||
options: [
|
options: [
|
||||||
{
|
{
|
||||||
displayName: 'Fist Name',
|
displayName: 'First Name',
|
||||||
name: 'firstName',
|
name: 'firstName',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
|
|
|
@ -229,7 +229,7 @@ export const leadFields: INodeProperties[] = [
|
||||||
description: 'Email address for the lead',
|
description: 'Email address for the lead',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Fist Name',
|
displayName: 'First Name',
|
||||||
name: 'firstname',
|
name: 'firstname',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
|
@ -498,7 +498,7 @@ export const leadFields: INodeProperties[] = [
|
||||||
description: 'Email address for the lead',
|
description: 'Email address for the lead',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Fist Name',
|
displayName: 'First Name',
|
||||||
name: 'firstname',
|
name: 'firstname',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
|
|
|
@ -41,7 +41,7 @@ export const personFields: INodeProperties[] = [
|
||||||
description: 'Email address (e.g – mbenioff@salesforce.com)',
|
description: 'Email address (e.g – mbenioff@salesforce.com)',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Fist Name',
|
displayName: 'First Name',
|
||||||
name: 'firstname',
|
name: 'firstname',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
|
|
Loading…
Reference in a new issue