diff --git a/packages/nodes-base/nodes/DateTime.node.ts b/packages/nodes-base/nodes/DateTime.node.ts index f860162383..50f9e07ede 100644 --- a/packages/nodes-base/nodes/DateTime.node.ts +++ b/packages/nodes-base/nodes/DateTime.node.ts @@ -44,7 +44,7 @@ export class DateTime implements INodeType { displayOptions: { show: { action:[ - 'format' + 'format', ], }, }, @@ -52,6 +52,35 @@ export class DateTime implements INodeType { default: '', required: true, }, + { + displayName: 'Custom Format', + name: 'custom', + displayOptions: { + show: { + action:[ + 'format', + ], + }, + }, + type: 'boolean', + default: false, + }, + { + displayName: 'To Format', + name: 'toFormat', + displayOptions: { + show: { + action:[ + 'format', + ], + custom: [ + true, + ], + }, + }, + type: 'string', + default: '', + }, { displayName: 'To Format', name: 'toFormat', @@ -59,7 +88,10 @@ export class DateTime implements INodeType { displayOptions: { show: { action:[ - 'format' + 'format', + ], + custom:[ + false, ], }, },