fixed regression bug

This commit is contained in:
dcore94 2023-05-05 17:52:40 +02:00
parent 73b80a4567
commit 70f8165077
1 changed files with 1 additions and 1 deletions

View File

@ -163,7 +163,7 @@ class CCPExecutionForm extends HTMLElement{
}
const event = new CustomEvent('newexecution', { detail: data.jobID });
document.dispatchEvent(event)
this.#executionmonitor = document.querySelector("d4s-ccp-executionmonitor")
this.#executionmonitor = document.querySelector("d4s-ccp-executionhistory")
if(this.#executionmonitor){
this.#executionmonitor.addExecution( { self : data.links[0].href, events : [data], jobID : data.jobID, method : this.#data.title})
}