fix
This commit is contained in:
parent
e872fcf600
commit
a31fcc132f
|
@ -272,8 +272,9 @@ class CCPExecutionHistory extends HTMLElement {
|
||||||
if(exec){
|
if(exec){
|
||||||
this.refreshExecution(exec.id)
|
this.refreshExecution(exec.id)
|
||||||
}else{
|
}else{
|
||||||
this.#pending.filter(pe=>{
|
this.#pending = this.#pending.filter(pe=>{
|
||||||
if(pe === data.jobID){
|
if(pe === data.jobID){
|
||||||
|
this.#data.push(data)
|
||||||
this.refreshExecution(pe)
|
this.refreshExecution(pe)
|
||||||
return false
|
return false
|
||||||
}else{
|
}else{
|
||||||
|
|
Loading…
Reference in New Issue