mirror of
https://github.com/ankitects/anki.git
synced 2026-01-07 02:53:54 -05:00
fixed formating for ninja testing
This commit is contained in:
parent
2db3aed716
commit
2da59a4768
2 changed files with 2 additions and 2 deletions
|
|
@ -161,7 +161,7 @@ impl Collection {
|
|||
) -> Result<()> {
|
||||
let ease_factor = u32::from(
|
||||
card.memory_state
|
||||
.map(|s| ((s.difficulty_shifted() * 1000.) as u16))
|
||||
.map(|s| (s.difficulty_shifted() * 1000.) as u16)
|
||||
.unwrap_or(card.ease_factor),
|
||||
);
|
||||
let entry = RevlogEntry {
|
||||
|
|
|
|||
|
|
@ -105,7 +105,7 @@ export function renderReviews(
|
|||
break;
|
||||
case GraphRange.Year:
|
||||
xMin = -364;
|
||||
xMax = 0;
|
||||
xMax = 0;
|
||||
break;
|
||||
case GraphRange.AllTime:
|
||||
xMin = min(sourceData.reviewCount.keys())!;
|
||||
|
|
|
|||
Loading…
Reference in a new issue