fix position showing as date in card stats

Fixes #1519
This commit is contained in:
Damien Elmes 2021-12-02 16:10:29 +10:00
parent 5a3999d0c8
commit 7fcb8cbb62

View file

@ -49,7 +49,7 @@ License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
if (duePosition !== undefined) { if (duePosition !== undefined) {
statsRows.push({ statsRows.push({
label: tr2.cardStatsNewCardPosition(), label: tr2.cardStatsNewCardPosition(),
value: dateString(duePosition), value: duePosition,
}); });
} }