Do "WebPanels" and "JiraIssueContent" work together?

In my app, I created one web panels with location “atl.jira.view.issue.left.context”. It is working properly. But when I created one more module with “JiraIssueContents”, the web panel with location “left” is not visible on the screen. Before and after screenshots are attached for it. Can anyone please guide me?!

Before adding JiraIssueContent
ShareX_o24r4Wel9V|491x500

After adding JiraIssueContent

My configuration on the descriptor file is as below. Let me know if I am missing any configuration over here.

{
  "modules": {
    "jiraIssueContents": [
      {
        "icon": {
          "width": 24,
          "height": 24,
          "url": "/assets/images/image-18x18.png"
        },
        "target": {
          "type": "web_panel",
          "url": "/jiraIssueContent"
        },
        "tooltip": {
          "value": "Jira Issue Content"
        },
        "jiraNativeAppsEnabled": false,
        "name": {
          "value": "Jira Issue Content"
        },
        "key": "jira-issue-content"
      }
    ],
    "webPanels": [{
      "url": "/left-web-panel",
      "location": "atl.jira.view.issue.left.context",
      "layout": {
        "width": "100%",
        "height": "100%"
      },
      "weight": 50,
      "supportsNative": false,
      "name": {
        "value": "Left Web Panel"
      },
      "key": "left-web-panel"
    }]
  }
}

Thank you in advance.

The short answer is: as soon as you have one JiraIssueContent module, all atl.jira.view.issue.left.context panels are disabled. The rationale is that the former are for the new issue view whereas the latter are for the new issue view.

1 Like