diff --git a/ccp/js/executionhistorycontroller.js b/ccp/js/executionhistorycontroller.js index 3d8f4d4..d60fd12 100644 --- a/ccp/js/executionhistorycontroller.js +++ b/ccp/js/executionhistorycontroller.js @@ -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) }