diff --git a/ccp/js/executionhistorycontroller.js b/ccp/js/executionhistorycontroller.js index 8433e60..302599f 100644 --- a/ccp/js/executionhistorycontroller.js +++ b/ccp/js/executionhistorycontroller.js @@ -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() }) }