When we clone an attachment from Service management then we link the attachments from the original ticket using:
{{#issue.attachment}}
- [ {{filename}} | {{content}} ] - {{size}} Bytes - {{author.displayName}} - {{created.jiraDate}}
{{/issue.attachment}}
Now we want to display the images from the original ticket in the cloned ticket description using
{{#if(issue.attachment.mimetype.startWith("image"))}}
!{{issue.attachment.filename}}!
{{/}}
but the list is alway empty.
Any idea how we can only show images in a list ?
Ideally we could replace the existing !images! in the description text and replace it with !{{filename}}! of that image .
Any hints are highly appreciated
Best regards Peter