From e872fcf60056cb4868cdb712b3332817a09dae4e Mon Sep 17 00:00:00 2001 From: dcore94 Date: Thu, 18 May 2023 12:23:49 +0200 Subject: [PATCH] fix --- ccp/js/executionhistorycontroller.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ccp/js/executionhistorycontroller.js b/ccp/js/executionhistorycontroller.js index fe5d5a1..d937c26 100644 --- a/ccp/js/executionhistorycontroller.js +++ b/ccp/js/executionhistorycontroller.js @@ -273,7 +273,7 @@ class CCPExecutionHistory extends HTMLElement { this.refreshExecution(exec.id) }else{ this.#pending.filter(pe=>{ - if(pe === data.jobId){ + if(pe === data.jobID){ this.refreshExecution(pe) return false }else{