From a31fcc132f5c7090d4c4a93ae4606fb581a88591 Mon Sep 17 00:00:00 2001 From: dcore94 Date: Thu, 18 May 2023 12:27:23 +0200 Subject: [PATCH] fix --- ccp/js/executionhistorycontroller.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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{