From a744332cf5a7765f5f8803456d42a26fa790afd6 Mon Sep 17 00:00:00 2001 From: agobrech Date: Tue, 11 Apr 2023 13:10:52 +0200 Subject: [PATCH] Fix format value --- .../nodes/DateTime/V2/FormatDateDescription.ts | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/packages/nodes-base/nodes/DateTime/V2/FormatDateDescription.ts b/packages/nodes-base/nodes/DateTime/V2/FormatDateDescription.ts index 3971664491..efc7fe6f13 100644 --- a/packages/nodes-base/nodes/DateTime/V2/FormatDateDescription.ts +++ b/packages/nodes-base/nodes/DateTime/V2/FormatDateDescription.ts @@ -42,27 +42,27 @@ export const FormatDateDescription: INodeProperties[] = [ }, { name: 'MM/DD/YYYY', - value: 'MM/DD/YYYY', + value: 'MM/dd/yyyy', description: 'Example: 09/04/1986', }, { name: 'YYYY/MM/DD', - value: 'YYYY/MM/DD', + value: 'yyyy/MM/dd', description: 'Example: 1986/04/09', }, { name: 'MMMM DD YYYY', - value: 'MMMM DD YYYY', + value: 'MMMM dd yyyy', description: 'Example: April 09 1986', }, { name: 'MM-DD-YYYY', - value: 'MM-DD-YYYY', + value: 'MM-dd-yyyy', description: 'Example: 09-04-1986', }, { name: 'YYYY-MM-DD', - value: 'YYYY-MM-DD', + value: 'yyyy-MM-dd', description: 'Example: 1986-04-09', }, { @@ -76,7 +76,7 @@ export const FormatDateDescription: INodeProperties[] = [ description: 'Example: 513388800', }, ], - default: 'MM/DD/YYYY', + default: 'mm/dd/yyyy', description: 'The format to convert the date to', }, {