mirror of
https://github.com/ankitects/anki.git
synced 2026-01-13 22:13:58 -05:00
Round DR to full number
This commit is contained in:
parent
efc5f6944e
commit
7fdee2c870
1 changed files with 1 additions and 1 deletions
|
|
@ -342,7 +342,7 @@ export function renderForgettingCurve(
|
|||
const desiredRetentionPercent = desiredRetention * 100;
|
||||
if (y2 >= lineY - 10 && y2 <= lineY + 10) {
|
||||
text += `<br>${tr.cardStatsFsrsForgettingCurveDesiredRetention()}: ${
|
||||
desiredRetentionPercent.toFixed(2)
|
||||
desiredRetentionPercent.toFixed(0)
|
||||
}%`;
|
||||
}
|
||||
showTooltip(text, x1, y1);
|
||||
|
|
|
|||
Loading…
Reference in a new issue