How do I refresh a single Issue on the Backlog or Spring/Kanban-Board via Javascript, if it has changed in the background (eg. via REST call)?
I tried various calls I found, like those:
JIRA.trigger(JIRA.Events.REFRESH_ISSUE_PAGE, [id]);
//or
JIRA.trigger(JIRA.Events.REFRESH_ISSUE_PAGE, [JIRA.Issue.getIssueId()]);
// even with a sleep before
So how do I programmatically refresh the affected issues in the backlog view, so that the issues are refreshed? Thank you in advance