From 28630bbb6c979064f190077850ebeece0016c740 Mon Sep 17 00:00:00 2001 From: Gregory Schier Date: Wed, 23 Jul 2025 12:46:26 -0700 Subject: [PATCH] Remove template as default value --- plugins/template-function-timestamp/src/index.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/plugins/template-function-timestamp/src/index.ts b/plugins/template-function-timestamp/src/index.ts index 718c0236..b1647403 100755 --- a/plugins/template-function-timestamp/src/index.ts +++ b/plugins/template-function-timestamp/src/index.ts @@ -24,7 +24,6 @@ const dateArg: TemplateFunctionArg = { name: 'date', label: 'Timestamp', optional: true, - defaultValue: '${[ timestamp.iso8601() ]}', description: 'Can be a timestamp in milliseconds, ISO string, or anything parseable by JS `new Date()`', placeholder: new Date().toISOString(), };