From 6c06fc24d066070c35e37122a1054fb6041477f0 Mon Sep 17 00:00:00 2001 From: christellevs Date: Mon, 31 Mar 2025 15:24:19 +0100 Subject: [PATCH 1/2] chore: set date description --- src/nodes/Date.Set.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/nodes/Date.Set.ts b/src/nodes/Date.Set.ts index 1d67a41..b7da171 100644 --- a/src/nodes/Date.Set.ts +++ b/src/nodes/Date.Set.ts @@ -24,6 +24,7 @@ export const module: ModuleDefinition = { schema: { type: 'any' }, attributes: { valuePlaceholder: 'now', + description: 'Use a stable and valid ISO 8601 date string such as `2025-01-01T00:00:00Z` to avoid unintended rollovers (e.g. setting month to February on a 31st day).' }, }, year: { From 6457aea154ccdc856b003dc40d9af0138d3b53c3 Mon Sep 17 00:00:00 2001 From: christellevs Date: Mon, 31 Mar 2025 15:25:53 +0100 Subject: [PATCH 2/2] chore: fix description --- src/nodes/Date.Set.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/nodes/Date.Set.ts b/src/nodes/Date.Set.ts index b7da171..a8741d6 100644 --- a/src/nodes/Date.Set.ts +++ b/src/nodes/Date.Set.ts @@ -24,7 +24,7 @@ export const module: ModuleDefinition = { schema: { type: 'any' }, attributes: { valuePlaceholder: 'now', - description: 'Use a stable and valid ISO 8601 date string such as `2025-01-01T00:00:00Z` to avoid unintended rollovers (e.g. setting month to February on a 31st day).' + description: 'Use a stable and valid ISO 8601 date string such as `2025-01-01T00:00:00Z` to avoid unintended rollovers.', }, }, year: {