|
@@ -26,6 +26,7 @@ export function DialogSessionList() {
|
|
|
const today = new Date().toDateString()
|
|
const today = new Date().toDateString()
|
|
|
return sync.data.session
|
|
return sync.data.session
|
|
|
.filter((x) => x.parentID === undefined)
|
|
.filter((x) => x.parentID === undefined)
|
|
|
|
|
+ .toSorted((a, b) => b.time.updated - a.time.updated)
|
|
|
.map((x) => {
|
|
.map((x) => {
|
|
|
const date = new Date(x.time.updated)
|
|
const date = new Date(x.time.updated)
|
|
|
let category = date.toDateString()
|
|
let category = date.toDateString()
|