fixed regression bug
This commit is contained in:
parent
73b80a4567
commit
70f8165077
|
@ -163,7 +163,7 @@ class CCPExecutionForm extends HTMLElement{
|
||||||
}
|
}
|
||||||
const event = new CustomEvent('newexecution', { detail: data.jobID });
|
const event = new CustomEvent('newexecution', { detail: data.jobID });
|
||||||
document.dispatchEvent(event)
|
document.dispatchEvent(event)
|
||||||
this.#executionmonitor = document.querySelector("d4s-ccp-executionmonitor")
|
this.#executionmonitor = document.querySelector("d4s-ccp-executionhistory")
|
||||||
if(this.#executionmonitor){
|
if(this.#executionmonitor){
|
||||||
this.#executionmonitor.addExecution( { self : data.links[0].href, events : [data], jobID : data.jobID, method : this.#data.title})
|
this.#executionmonitor.addExecution( { self : data.links[0].href, events : [data], jobID : data.jobID, method : this.#data.title})
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue