diff --git a/ccp/js/executionhistorycontroller.js b/ccp/js/executionhistorycontroller.js index d937c26..1da1b28 100644 --- a/ccp/js/executionhistorycontroller.js +++ b/ccp/js/executionhistorycontroller.js @@ -272,8 +272,9 @@ class CCPExecutionHistory extends HTMLElement { if(exec){ this.refreshExecution(exec.id) }else{ - this.#pending.filter(pe=>{ + this.#pending = this.#pending.filter(pe=>{ if(pe === data.jobID){ + this.#data.push(data) this.refreshExecution(pe) return false }else{