mirror of
https://github.com/ankitects/anki.git
synced 2026-01-14 06:23:57 -05:00
FIX DR not displayed as % in forgetting curve
This commit is contained in:
parent
d3d6bd8ce0
commit
550aa21e09
1 changed files with 1 additions and 1 deletions
|
|
@ -340,7 +340,7 @@ export function renderForgettingCurve(
|
|||
);
|
||||
let text = tooltipText(d);
|
||||
if (y2 >= lineY - 10 && y2 <= lineY + 10) {
|
||||
text += `<br>${tr.cardStatsFsrsForgettingCurveDesiredRetention()}: ${desiredRetention.toFixed(2)}`;
|
||||
text += `<br>${tr.cardStatsFsrsForgettingCurveDesiredRetention()}: ${desiredRetention.toFixed(2) * 100}%`;
|
||||
}
|
||||
showTooltip(text, x1, y1);
|
||||
})
|
||||
|
|
|
|||
Loading…
Reference in a new issue