mirror of
https://github.com/ankitects/anki.git
synced 2025-09-19 06:22:22 -04:00
Turn Running total box transparent
This commit is contained in:
parent
d780c96b28
commit
a656dd5541
1 changed files with 5 additions and 1 deletions
|
@ -253,7 +253,11 @@ export function renderReviews(
|
||||||
i18n.tr(i18n.TR.STATISTICS_COUNTS_EARLY_CARDS),
|
i18n.tr(i18n.TR.STATISTICS_COUNTS_EARLY_CARDS),
|
||||||
valueLabel(totals[4]),
|
valueLabel(totals[4]),
|
||||||
],
|
],
|
||||||
["grey", i18n.tr(i18n.TR.STATISTICS_RUNNING_TOTAL), valueLabel(cumulative)],
|
[
|
||||||
|
"transparent",
|
||||||
|
i18n.tr(i18n.TR.STATISTICS_RUNNING_TOTAL),
|
||||||
|
valueLabel(cumulative),
|
||||||
|
],
|
||||||
];
|
];
|
||||||
for (const [colour, label, detail] of lines) {
|
for (const [colour, label, detail] of lines) {
|
||||||
buf += `<tr>
|
buf += `<tr>
|
||||||
|
|
Loading…
Reference in a new issue