Hi folks,
I try to create my own node which contains a input object with the type of date where this input object has as initial value the date of today (like if you use new Date()).
I've already tried something like the following defaults config, but the date input still has his initial value of yyyy-mm-dd.
...
category: 'function',
color: '#a6bbcf',
defaults: {
name: {value:""},
date: {value: new Date()}
},
inputs:1,
outputs:1,
...