Skip to content

Commit d1f5676

Browse files
authored
Adjust order in KPI script output to match spreadsheet columns (#27894)
Updating to match the current column order in the KPI sheet.
1 parent b3071c8 commit d1f5676

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

website/scripts/get-bug-and-pr-report.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -332,11 +332,11 @@ module.exports = {
332332
// NOTE: If order of the KPI sheets columns changes, the order values are pushed into this array needs to change, as well.
333333
kpiResults.push(
334334
averageDaysContributorPullRequestsAreOpenFor,
335-
allBugs32DaysOrOlder.length,
336335
averageNumberOfDaysBugsAreOpenFor,
337-
allBugsReportedByCustomersInPastWeek.length,
336+
allBugs32DaysOrOlder.length,
338337
allBugsCreatedInPastWeek.length,
339-
allBugsClosedInPastWeek.length,);
338+
allBugsClosedInPastWeek.length,
339+
allBugsReportedByCustomersInPastWeek.length,);
340340

341341
// Log the results
342342
sails.log(`

0 commit comments

Comments
 (0)