From fed2f1d63cce50b7b433b2acb8b53bd522e65f23 Mon Sep 17 00:00:00 2001 From: dcore94 Date: Thu, 18 May 2023 12:17:58 +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 801803f..87880c2 100644 --- a/ccp/js/executionhistorycontroller.js +++ b/ccp/js/executionhistorycontroller.js @@ -272,7 +272,7 @@ class CCPExecutionHistory extends HTMLElement { if(exec){ this.refreshExecution(exec.id) }else{ - this.pending.filter(pe=>{ + this.#pending.filter(pe=>{ if(pe === data.jobId){ this.refreshExecution(pe) return false