This commit is contained in:
Daniel 2023-11-17 10:02:40 +08:00
parent afaf88d525
commit afef4926ce
No known key found for this signature in database
GPG key ID: 86211BA83DF03017

View file

@ -329,7 +329,7 @@ func getCardsBlocks(cards []riff.Card, page int) (blocks []*Block, total, pageCo
return
}
// sort by due date asc
// sort by due date asc https://github.com/siyuan-note/siyuan/pull/9673
sort.Slice(cards, func(i, j int) bool {
due1 := cards[i].(*riff.FSRSCard).C.Due
due2 := cards[j].(*riff.FSRSCard).C.Due