Hello, I am modifying the current issue description, however, the changes only appear after I reload the page. Is there a way to refresh the current issue without reloading? the code I am using to update:
api.asUser()
.requestJira(route`/rest/api/3/issue/${issueIdOrKey}`, {
method: 'PUT',
headers: {
'Accept': 'application/json',
'Content-Type': 'application/json; charset=UTF-8'
},
body: JSON.stringify({ fields: { description } })
});