mirror of
https://github.com/zadam/trilium.git
synced 2025-01-27 09:29:43 +08:00
refresh notes/branches sorted
This commit is contained in:
parent
ec7c0f0723
commit
69d739400c
1 changed files with 5 additions and 1 deletions
|
@ -96,7 +96,11 @@ async function load(req) {
|
|||
.map(note => note.noteId);
|
||||
}
|
||||
|
||||
const branches = await sql.getManyRows(`SELECT * FROM branches WHERE isDeleted = 0 AND noteId IN (???)`, noteIds);
|
||||
const branches = (await sql.getManyRows(`SELECT * FROM branches WHERE isDeleted = 0 AND noteId IN (???)`, noteIds))
|
||||
.concat((await sql.getManyRows(`SELECT * FROM branches WHERE isDeleted = 0 AND parentNoteId IN (???)`, noteIds)));
|
||||
|
||||
// sort branches so they are filled sorted in the cache as well
|
||||
branches.sort((a, b) => a.notePosition < b.notePosition ? -1 : 1);
|
||||
|
||||
const notes = await getNotes(noteIds);
|
||||
|
||||
|
|
Loading…
Reference in a new issue