Hi,
I have noticed that “jiraIssueGlances” module appeared so I tried to create my first glance for new issue view in Jira.
Unfortunately installing the add-on in Jira fails with undescriptive error message:
An error occurred during installation. Contact the add-on vendor for support.
No error happens on my add-on side - I can only observe successful call to /atlassian-connect.json.
Therefore, there must something wrong happening when Jira tries to consume the descriptor, I think.
Can anybody spot what is wrong with the following code:
"jiraIssueGlances": [
{
"key": "my-first-glance",
"name": {
"value": "My glance name"
},
"target": {
"type": "web_panel",
"url": "/issue"
},
"icon": {
"width": 24,
"height": 24,
"url": "/my-icon.png"
},
"content": {
"type": "label",
"label": {
"value": "my glance content label"
}
}
}
]
The descriptor with jiraIssueGlances module in it passes the validation part (if there is something wrong with the syntax/schema then Jira displays different error message).
I can also add that the descriptor/installation works fine without the jiraIssueGlances.
Thanks,
Jack