mirror of
https://github.com/n8n-io/n8n.git
synced 2025-01-12 05:17:28 -08:00
fix(Date & Time Node): Add info box at top of date and time explaining expressions
This commit is contained in:
parent
6c35518ed9
commit
b7a20dd3a2
|
@ -59,6 +59,13 @@ export class DateTime implements INodeType {
|
||||||
inputs: ['main'],
|
inputs: ['main'],
|
||||||
outputs: ['main'],
|
outputs: ['main'],
|
||||||
properties: [
|
properties: [
|
||||||
|
{
|
||||||
|
displayName:
|
||||||
|
"More powerful date functionality is available in <a href='https://docs.n8n.io/code-examples/expressions/luxon/' target='_blank'>expressions</a>,</br> e.g. <code>{{ $now.plus(1, 'week') }}</code>",
|
||||||
|
name: 'noticeDateTime',
|
||||||
|
type: 'notice',
|
||||||
|
default: '',
|
||||||
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Action',
|
displayName: 'Action',
|
||||||
name: 'action',
|
name: 'action',
|
||||||
|
|
Loading…
Reference in a new issue