mirror of
https://github.com/ankitects/anki.git
synced 2026-01-13 22:13:58 -05:00
Fix/no memory state revlogs in reverse order on card stats screen.
This commit is contained in:
parent
7556f71b96
commit
4a2b52465d
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