fixes
parent
1afb41077e
commit
22f7b55c78
|
@ -36,7 +36,7 @@ export default class Score extends Command {
|
||||||
const cloudServicesArray: number[] = [];
|
const cloudServicesArray: number[] = [];
|
||||||
const otherArray: number[] = [];
|
const otherArray: number[] = [];
|
||||||
const miscArray: number[] = [];
|
const miscArray: number[] = [];
|
||||||
for (const hist of hists) {
|
for (const hist of hists.reverse()) {
|
||||||
totalArray.push(hist.report.total);
|
totalArray.push(hist.report.total);
|
||||||
activityArray.push(hist.report.activity);
|
activityArray.push(hist.report.activity);
|
||||||
moderationArray.push(hist.report.moderation);
|
moderationArray.push(hist.report.moderation);
|
||||||
|
@ -188,7 +188,7 @@ export default class Score extends Command {
|
||||||
const cloudServicesArray: number[] = [];
|
const cloudServicesArray: number[] = [];
|
||||||
const otherArray: number[] = [];
|
const otherArray: number[] = [];
|
||||||
const miscArray: number[] = [];
|
const miscArray: number[] = [];
|
||||||
for (const hist of hists) {
|
for (const hist of hists.reverse()) {
|
||||||
totalArray.push(hist.report.total);
|
totalArray.push(hist.report.total);
|
||||||
activityArray.push(hist.report.activity);
|
activityArray.push(hist.report.activity);
|
||||||
moderationArray.push(hist.report.moderation);
|
moderationArray.push(hist.report.moderation);
|
||||||
|
|
Loading…
Reference in New Issue