mirror of
https://github.com/ankitects/anki.git
synced 2025-09-23 08:22:24 -04:00
Fix/no memory state revlogs in reverse order on card stats screen. (#3951)
This commit is contained in:
parent
9872645d5a
commit
2406830ff9
1 changed files with 1 additions and 1 deletions
|
@ -176,7 +176,7 @@ impl Collection {
|
|||
}
|
||||
Ok(result.into_iter().rev().collect())
|
||||
} else {
|
||||
Ok(revlog.iter().map(stats_revlog_entry).collect())
|
||||
Ok(revlog.iter().rev().map(stats_revlog_entry).collect())
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue