mirror of
https://github.com/ankitects/anki.git
synced 2025-09-18 22:12:21 -04:00
due sort should sort by type first
This commit is contained in:
parent
e88bb29adf
commit
26f3ab7b9f
1 changed files with 1 additions and 1 deletions
|
@ -84,7 +84,7 @@ and c.nid=n.id %s""" % (q, order)
|
|||
elif type == "cardReps":
|
||||
sort = "c.reps"
|
||||
elif type == "cardDue":
|
||||
sort = "c.due"
|
||||
sort = "c.type, c.due"
|
||||
elif type == "cardEase":
|
||||
sort = "c.factor"
|
||||
elif type == "cardLapses":
|
||||
|
|
Loading…
Reference in a new issue