sorting by updated

This commit is contained in:
dcore94 2023-03-29 17:20:31 +02:00
parent d26749d732
commit 3d40deba3c
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(b.updated)) - (new Date(a.updated))))
this.#filtered.sort((a,b)=>(new Date(b.updated)) - (new Date(a.updated)))
this.groupBy()
BSS.apply(this.#execution_list_bss, this.#rootdoc)
}