Hi Team,
We have a multi-text field where data is entered separated by a comma. I need this data to be populated into another field by converting it into rows with a bullet symbol in front of each value. I have tried a script that I was using in my Jira server under event-based actions of JMWE, but it didn’t work. Can anyone help me on this? Thanks in advance.
on Jira Cloud, you can still use the same post-function, either in a transition or an event-based action. But the syntax of the Value will be different:
{% for l in issue.fields["text field"].split(",") %}
* {{l}}
{% endfor %}
Of course, the destination text field should be a multiline text field with the wiki renderer selected in the Field Configuration (just like on Server/DC)
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.