Skip to content

Commit

Permalink
fix: Correct misfix from `node-param-display-name-wrong-for-dynamic-m…
Browse files Browse the repository at this point in the history
…ulti-options` (#3575)

* 👕 Correct misfix

* 👕 Fix build
  • Loading branch information
ivov authored Jun 23, 2022
1 parent 42d2959 commit 2ccc7fb
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 11 deletions.
1 change: 1 addition & 0 deletions packages/cli/src/Logger.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
/* eslint-disable @typescript-eslint/no-unsafe-return */
/* eslint-disable @typescript-eslint/no-shadow */
/* eslint-disable @typescript-eslint/no-unsafe-assignment */
/* eslint-disable @typescript-eslint/no-unsafe-return */
Expand Down
3 changes: 2 additions & 1 deletion packages/nodes-base/nodes/Automizy/ContactDescription.ts
Original file line number Diff line number Diff line change
Expand Up @@ -431,7 +431,8 @@ export const contactFields: INodeProperties[] = [
],
},
{
displayName: 'Remove Tag Names or IDs',
// eslint-disable-next-line n8n-nodes-base/node-param-display-name-wrong-for-dynamic-multi-options
displayName: 'Remove Tags',
name: 'removeTags',
type: 'multiOptions',
typeOptions: {
Expand Down
4 changes: 2 additions & 2 deletions packages/nodes-base/nodes/CoinGecko/CoinDescription.ts
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ export const coinFields: INodeProperties[] = [
placeholder: 'bitcoin',
},
{
displayName: 'Base Currencies Name or ID',
displayName: 'Base Currency Names or IDs',
name: 'baseCurrencies',
required: true,
type: 'multiOptions',
Expand Down Expand Up @@ -330,7 +330,7 @@ export const coinFields: INodeProperties[] = [
description: 'The second currency in the pair. For BTC:ETH this is ETH. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>.',
},
{
displayName: 'Quote Currencies Name or ID',
displayName: 'Quote Currency Names or IDs',
name: 'quoteCurrencies',
type: 'multiOptions',
typeOptions: {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,8 @@ export const agentFields: INodeProperties[] = [
},
},
{
displayName: 'Member Names or IDs',
// eslint-disable-next-line n8n-nodes-base/node-param-display-name-wrong-for-dynamic-multi-options
displayName: 'Member of Group Names/IDs',
name: 'member_of',
type: 'multiOptions',
default: [],
Expand All @@ -251,7 +252,8 @@ export const agentFields: INodeProperties[] = [
default: '',
},
{
displayName: 'Observer Names or IDs',
// eslint-disable-next-line n8n-nodes-base/node-param-display-name-wrong-for-dynamic-multi-options
displayName: 'Observer of Group Names/IDs',
name: 'observer_of',
type: 'multiOptions',
default: [],
Expand Down Expand Up @@ -593,7 +595,8 @@ export const agentFields: INodeProperties[] = [
},
},
{
displayName: 'Member Names or IDs',
// eslint-disable-next-line n8n-nodes-base/node-param-display-name-wrong-for-dynamic-multi-options
displayName: 'Member of Group Names/IDs',
name: 'member_of',
type: 'multiOptions',
default: [],
Expand All @@ -609,7 +612,8 @@ export const agentFields: INodeProperties[] = [
default: '',
},
{
displayName: 'Observer Names or IDs',
// eslint-disable-next-line n8n-nodes-base/node-param-display-name-wrong-for-dynamic-multi-options
displayName: 'Observer of Group Names/IDs',
name: 'observer_of',
type: 'multiOptions',
default: [],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -453,7 +453,7 @@ export const userFields: INodeProperties[] = [
},
options: [
{
displayName: 'Custom Schemas Name or ID',
displayName: 'Custom Schema Names or IDs',
name: 'customFieldMask',
type: 'multiOptions',
displayOptions: {
Expand Down Expand Up @@ -587,7 +587,7 @@ export const userFields: INodeProperties[] = [
},
options: [
{
displayName: 'Custom Schemas Name or ID',
displayName: 'Custom Schema Names or IDs',
name: 'customFieldMask',
type: 'multiOptions',
displayOptions: {
Expand Down
5 changes: 3 additions & 2 deletions packages/nodes-base/nodes/Hubspot/DealDescription.ts
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ export const dealFields: INodeProperties[] = [
default: [],
},
{
displayName: 'Associated Vids Names or IDs',
displayName: 'Associated Vid Names or IDs',
name: 'associatedVids',
type: 'multiOptions',
typeOptions: {
Expand Down Expand Up @@ -455,7 +455,8 @@ export const dealFields: INodeProperties[] = [
description: '<p>Used to include specific deal properties in the results. By default, the results will only include Deal ID and will not include the values for any properties for your Deals.</p><p>Including this parameter will include the data for the specified property in the results. You can include this parameter multiple times to request multiple properties separated by a comma: <code>,</code>.</p>. Choose from the list, or specify IDs using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>.',
},
{
displayName: 'Property Names or IDs',
// eslint-disable-next-line n8n-nodes-base/node-param-display-name-wrong-for-dynamic-multi-options
displayName: 'Properties with History',
name: 'propertiesWithHistory',
type: 'multiOptions',
typeOptions: {
Expand Down

0 comments on commit 2ccc7fb

Please sign in to comment.