How to display web panels based on type of issue in issue view page?

I wish to display few panels based on type of the issue in issue view page. how to use the conditions to get the panel displayed.

Hi @DhineshDhanapal ,

You may be able to achieve this with a jira_expression condition.

{
 "conditions": [
  {
    "condition": "jira_expression",
    "params": {
      "expression": "app.properties['supportedIssueTypes'].includes(issue.issueType.id)"
    }
  }
]

Regards,
Dugald

2 Likes

@dmorrow any other configs need to be made to get this work done? I tried with the same expression. it hidden that panels always.