mirror of
https://github.com/n8n-io/n8n.git
synced 2025-02-02 07:01:30 -08:00
👕 Add exceptions
This commit is contained in:
parent
1ef041dbe2
commit
9eff934f4d
|
@ -50,11 +50,11 @@ export class ClockifyTrigger implements INodeType {
|
|||
required: true,
|
||||
default: '',
|
||||
},
|
||||
// eslint-disable-next-line n8n-nodes-base/node-param-default-missing
|
||||
{
|
||||
displayName: 'Trigger',
|
||||
name: 'watchField',
|
||||
type: 'options',
|
||||
default: '',
|
||||
options: [
|
||||
{
|
||||
name: 'New Time Entry',
|
||||
|
|
|
@ -136,11 +136,11 @@ export class LocalFileTrigger implements INodeType {
|
|||
placeholder: '**/*.txt',
|
||||
description: 'Files or paths to ignore. The whole path is tested, not just the filename. Supports <a href="https://github.com/micromatch/anymatch">Anymatch</a>- syntax.',
|
||||
},
|
||||
// eslint-disable-next-line n8n-nodes-base/node-param-default-missing
|
||||
{
|
||||
displayName: 'Max Folder Depth',
|
||||
name: 'depth',
|
||||
type: 'options',
|
||||
default: '-1',
|
||||
options: [
|
||||
{
|
||||
name: 'Unlimited',
|
||||
|
|
|
@ -108,11 +108,11 @@ export class Pushover implements INodeType {
|
|||
default: '',
|
||||
description: `Your message`,
|
||||
},
|
||||
// eslint-disable-next-line n8n-nodes-base/node-param-default-missing
|
||||
{
|
||||
displayName: 'Priority',
|
||||
name: 'priority',
|
||||
type: 'options',
|
||||
default: '-2',
|
||||
displayOptions: {
|
||||
show: {
|
||||
resource: [
|
||||
|
|
|
@ -518,11 +518,11 @@ export class Switch implements INodeType {
|
|||
},
|
||||
|
||||
|
||||
// eslint-disable-next-line n8n-nodes-base/node-param-default-missing
|
||||
{
|
||||
displayName: 'Fallback Output',
|
||||
name: 'fallbackOutput',
|
||||
type: 'options',
|
||||
default: '-1',
|
||||
displayOptions: {
|
||||
show: {
|
||||
mode: [
|
||||
|
|
Loading…
Reference in a new issue