fix communications between form and monitor
This commit is contained in:
parent
cf0563dd43
commit
854ad2c076
|
@ -259,7 +259,7 @@ class CCPExecutionHistory extends HTMLElement {
|
||||||
|
|
||||||
connectNewExecution(){
|
connectNewExecution(){
|
||||||
document.addEventListener("newexecution", ev=>{
|
document.addEventListener("newexecution", ev=>{
|
||||||
this.#data = [ {id: ev.detail } ].concat(this.#data)
|
this.#data = [ ev.detail ].concat(this.#data)
|
||||||
this.updateList()
|
this.updateList()
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue