sorting by updated

This commit is contained in:
dcore94 2023-03-29 17:18:36 +02:00
parent 879cd0cdfc
commit d26749d732
1 changed files with 1 additions and 1 deletions

View File

@ -153,7 +153,7 @@ class CCPExecutionHistory extends HTMLElement {
(d.method.indexOf(f) !== -1)
})
}
this.#filtered.sort((a,b)=>(new Date(a.updated)) - (new Date(b.updated))))
this.#filtered.sort((a,b)=>(new Date(b.updated)) - (new Date(a.updated))))
this.groupBy()
BSS.apply(this.#execution_list_bss, this.#rootdoc)
}