fix communications between form and monitor

This commit is contained in:
dcore94 2023-05-05 18:02:32 +02:00
parent cf0563dd43
commit 854ad2c076
1 changed files with 1 additions and 1 deletions

View File

@ -259,7 +259,7 @@ class CCPExecutionHistory extends HTMLElement {
connectNewExecution(){
document.addEventListener("newexecution", ev=>{
this.#data = [ {id: ev.detail } ].concat(this.#data)
this.#data = [ ev.detail ].concat(this.#data)
this.updateList()
})
}