bugfix: Fixed crash when requesting execution status that could not be found (NPE) (#440)

This commit is contained in:
James Read
2024-10-15 11:48:55 +01:00
committed by GitHub
parent de81ec00fd
commit 32b5fee108
2 changed files with 3 additions and 2 deletions

View File

@@ -407,7 +407,7 @@ function marshalMreOutput (dashboardComponent, fieldset) {
})
const updateMre = (pre, json) => {
pre.innerHTML = json.stdout
pre.innerHTML = json.output
}
window.addEventListener('ExecutionFinished', (e) => {