Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update mc action destination field labels and descriptions.ts #2173

Closed
wants to merge 2 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ const action: ActionDefinition<Settings, Payload> = {
},
phone_number: {
label: 'Phone Number',
description: `The contact's phone number.`,
description: `The contact's phone number. Note: This is different from the Phone Number ID field, but the same value can be stored in both fields.`,
type: 'string',
allowNull: true,
default: {
Expand All @@ -146,8 +146,8 @@ const action: ActionDefinition<Settings, Payload> = {
}
},
line: {
label: 'LINE ID',
description: `The contact's LINE ID.`,
label: 'Line',
description: `The contact's landline.`,
type: 'string',
allowNull: true,
default: {
Expand All @@ -159,8 +159,8 @@ const action: ActionDefinition<Settings, Payload> = {
}
},
facebook: {
label: 'Facebook ID',
description: `The contact's Facebook ID.`,
label: 'Facebook',
description: `The contact's Facebook identifier.`,
type: 'string',
allowNull: true,
default: {
Expand Down Expand Up @@ -213,7 +213,7 @@ const action: ActionDefinition<Settings, Payload> = {
},
phone_number_id: {
label: 'Phone Number ID',
description: `The contact's Phone Number ID. This must be a valid phone number.`,
description: `Primary Phone Number used to identify a Contact. This must be a valid phone number.`,
type: 'string',
allowNull: true,
required: false,
Expand Down
Loading