chore: generate
This commit is contained in:
parent
4d585464f3
commit
c0acf5c43f
1 changed files with 5 additions and 1 deletions
|
|
@ -130,7 +130,11 @@ export function DialogSessionList() {
|
|||
|
||||
const options = createMemo(() => {
|
||||
const today = new Date().toDateString()
|
||||
const sessionMap = new Map(sessions().filter((x) => x.parentID === undefined).map((x) => [x.id, x]))
|
||||
const sessionMap = new Map(
|
||||
sessions()
|
||||
.filter((x) => x.parentID === undefined)
|
||||
.map((x) => [x.id, x]),
|
||||
)
|
||||
|
||||
const searchResult = searchResults()
|
||||
const displayOrder = searchResult ? orderByRecency(searchResult) : browseOrder()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue