Yes in the YAML.
I think you need to write it like:
name: text
note_title: "{{ name }}"
or
name: text
note_title: Project {{ name }} meeting
because when the value of the option starts with an { and ends with an } I mean they think this is an Object on parsing and make the following:
{
"name": "text",
"note_title" {
"name": null
}
}
1 Like