diff --git a/ts/routes/card-info/forgetting-curve.ts b/ts/routes/card-info/forgetting-curve.ts index 714032958..c2a9f2580 100644 --- a/ts/routes/card-info/forgetting-curve.ts +++ b/ts/routes/card-info/forgetting-curve.ts @@ -339,8 +339,11 @@ export function renderForgettingCurve( 1, ); let text = tooltipText(d); + const desiredRetentionPercent = desiredRetention * 100; if (y2 >= lineY - 10 && y2 <= lineY + 10) { - text += `
${tr.cardStatsFsrsForgettingCurveDesiredRetention()}: ${desiredRetention.toFixed(2)}`; + text += `
${tr.cardStatsFsrsForgettingCurveDesiredRetention()}: ${ + desiredRetentionPercent.toFixed(0) + }%`; } showTooltip(text, x1, y1); })