Note
We've packed up and moved from Confluence to Discourse to bring you a better, more interactive space. Out of courtesy we didn't migrate your user account so - you will have to signup again
The Exalate team will be on holiday for the coming days - returning Jan 4
Enjoy & stay safe
I am using a visual connection with scripting, and I can't get this script to work:
issue.comments = commentHelper.mergeComments(
issue, replica,{
comment ->
comment.body = "[" + replica.key
+ "|https://wenergysoftware.atlassian.net/browse/"+replica.key+"]"
+ ", "+comment.body
}
)
However, I can get the following script to work (I'd just prefer to have the link):
issue.comments = commentHelper.mergeComments(
issue, replica, {
comment ->
comment.body = replica.key+
", "
+comment.body
}
)