From 2d82c95409e79ef83034ffdab5e23b4ee81210a6 Mon Sep 17 00:00:00 2001 From: dcore94 Date: Thu, 18 May 2023 12:22:21 +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 87880c2..fe5d5a1 100644 --- a/ccp/js/executionhistorycontroller.js +++ b/ccp/js/executionhistorycontroller.js @@ -260,7 +260,7 @@ class CCPExecutionHistory extends HTMLElement { connectNewExecution(){ document.addEventListener("newexecution", ev=>{ - this.pending.push(ev.detail) + this.#pending.push(ev.detail) }) }