reenabled event

This commit is contained in:
dcore94 2023-05-18 12:11:46 +02:00
parent 9fac4a968e
commit 99c2226649
1 changed files with 2 additions and 1 deletions

View File

@ -6,6 +6,7 @@ class CCPExecutionHistory extends HTMLElement {
#broadcasturl = null;
#archive = null;
#data = [];
#pending = [];
#filtered = [];
#socket = null;
#interval = null;
@ -259,7 +260,7 @@ class CCPExecutionHistory extends HTMLElement {
connectNewExecution(){
document.addEventListener("newexecution", ev=>{
//add toast here
this.pending.push(ev.details)
})
}