One of our app has a button in an issue glance that opens a new modal dialog using
window.AP.dialog.create({
key: "detail-dialog",
width: 700,
height: 500,
chrome: true,
header: "Detail Dialog",
cancelText: "Close",
customData: {id, name, state},
});
Unfortunately, it seems this has stopped working in some cases. All we see is a white box with the dialog opening but then our iframe content is not rendered and the Close button does not work (escape works).
It seems that this is only happening on Jira Software views (boards, backlog, etc.) but the behavior is quite inconsistent, so I struggle to confirm this. Also, while it seems to work in our dev instance it does not work in our staging and production instances.
Curious if anyone else has noticed this before?