Hi,
When we pass a Checkbox field value to a comment (Automation), it enters all the values in 1 row, separated by coma: Value1,Value2,Value3,etc
We want to add the Field value, but have each Value on different row:
Value1
Value2
Value3
etc...
Is there any way to do that?
Thanks
This should work:
{{#issue.test}}{{.}}{{^last}}
{{/}}{{/}}
Where "test" is the name of your custom field. It will order it in the way it is set on the filed, not in the order you clicked each checkbox.
Thanks for your reply.
I tried this.
Instead of - Value1,Value2,Value3... ,
I get - Value1Value2Value3
This is what I used in the Automation Comment -
{{#issue.customfield_10377}}{{.}}{{^last}}
{{/}}{{/}}
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Sorry, when I copied the automation the empty line got deleted...
There is an empty line missing in the automation. It should be:
{{#issue.customfield_10377}}{{.}}{{^last}}
{{/}}{{/}}
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.