refactor(nodes-base): Apply lint rule node-param-display-name-not-first-position (#4073)

* 👕 Enable rule

* 👕 Apply rule
This commit is contained in:
Iván Ovejero
2022-09-12 09:25:39 +02:00
committed by GitHub
parent f6064ef278
commit 26b07e28f0
7 changed files with 20 additions and 19 deletions

View File

@@ -168,8 +168,8 @@ const sendHtmlEmailFields: INodeProperties[] = [
displayName: 'Attachment Data',
values: [
{
default: '',
displayName: 'Input Data Field Name',
default: '',
name: 'binaryPropertyName',
type: 'string',
description:
@@ -196,8 +196,8 @@ const sendHtmlEmailFields: INodeProperties[] = [
displayName: 'Receipient',
values: [
{
name: 'bcc',
displayName: 'Receipient',
name: 'bcc',
type: 'string',
default: '',
},
@@ -222,8 +222,8 @@ const sendHtmlEmailFields: INodeProperties[] = [
displayName: 'Receipient',
values: [
{
name: 'cc',
displayName: 'Receipient',
name: 'cc',
type: 'string',
default: '',
},
@@ -249,8 +249,8 @@ const sendHtmlEmailFields: INodeProperties[] = [
name: 'tags',
values: [
{
default: '',
displayName: 'Tag',
default: '',
name: 'tag',
type: 'string',
},
@@ -398,8 +398,8 @@ const sendHtmlTemplateEmailFields: INodeProperties[] = [
name: 'tags',
values: [
{
default: '',
displayName: 'Tag',
default: '',
name: 'tag',
type: 'string',
},

View File

@@ -40,8 +40,8 @@ export class SendInBlueTrigger implements INodeType {
],
properties: [
{
default: 'transactional',
displayName: 'Resource',
default: 'transactional',
name: 'type',
options: [
{ name: 'Inbound', value: 'inbound' },