pull/29/head
Matthew 2020-11-05 03:06:02 -05:00
parent 1afb41077e
commit 22f7b55c78
No known key found for this signature in database
GPG Key ID: 210AF32ADE3B5C4B
1 changed files with 2 additions and 2 deletions

View File

@ -36,7 +36,7 @@ export default class Score extends Command {
const cloudServicesArray: number[] = [];
const otherArray: number[] = [];
const miscArray: number[] = [];
for (const hist of hists) {
for (const hist of hists.reverse()) {
totalArray.push(hist.report.total);
activityArray.push(hist.report.activity);
moderationArray.push(hist.report.moderation);
@ -188,7 +188,7 @@ export default class Score extends Command {
const cloudServicesArray: number[] = [];
const otherArray: number[] = [];
const miscArray: number[] = [];
for (const hist of hists) {
for (const hist of hists.reverse()) {
totalArray.push(hist.report.total);
activityArray.push(hist.report.activity);
moderationArray.push(hist.report.moderation);