reviews graph needs numbers in local locale

This commit is contained in:
Damien Elmes 2020-08-05 19:05:24 +10:00
parent 72098549a1
commit 58c4f165aa

View file

@ -165,7 +165,7 @@ export function renderReviews(
if (Math.round(n) != n) {
return "";
} else {
return n.toString();
return n.toLocaleString();
}
}
};