sorting by updated

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

View File

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