You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@community.apache.org by hu...@apache.org on 2019/08/09 06:18:00 UTC

svn commit: r1864761 - in /comdev/reporter.apache.org/trunk/site/wizard/js: source/statistics_generator.js wizard-beta.js

Author: humbedooh
Date: Fri Aug  9 06:18:00 2019
New Revision: 1864761

URL: http://svn.apache.org/viewvc?rev=1864761&view=rev
Log:
fix open/close order bug

Modified:
    comdev/reporter.apache.org/trunk/site/wizard/js/source/statistics_generator.js
    comdev/reporter.apache.org/trunk/site/wizard/js/wizard-beta.js

Modified: comdev/reporter.apache.org/trunk/site/wizard/js/source/statistics_generator.js
URL: http://svn.apache.org/viewvc/comdev/reporter.apache.org/trunk/site/wizard/js/source/statistics_generator.js?rev=1864761&r1=1864760&r2=1864761&view=diff
==============================================================================
--- comdev/reporter.apache.org/trunk/site/wizard/js/source/statistics_generator.js (original)
+++ comdev/reporter.apache.org/trunk/site/wizard/js/source/statistics_generator.js Fri Aug  9 06:18:00 2019
@@ -385,8 +385,8 @@ function statistics_health(data) {
                     }
                 }
                 cols[0].push(date);
-                cols[1].push(c);
-                cols[2].push(o);
+                cols[1].push(o);
+                cols[2].push(c);
             }
             let cutoff = moment.utc().subtract(13, 'weeks').startOf('week').weekday(4);
             let chartdiv = new HTML('div', {

Modified: comdev/reporter.apache.org/trunk/site/wizard/js/wizard-beta.js
URL: http://svn.apache.org/viewvc/comdev/reporter.apache.org/trunk/site/wizard/js/wizard-beta.js?rev=1864761&r1=1864760&r2=1864761&view=diff
==============================================================================
--- comdev/reporter.apache.org/trunk/site/wizard/js/wizard-beta.js (original)
+++ comdev/reporter.apache.org/trunk/site/wizard/js/wizard-beta.js Fri Aug  9 06:18:00 2019
@@ -2527,8 +2527,8 @@ function statistics_health(data) {
                     }
                 }
                 cols[0].push(date);
-                cols[1].push(c);
-                cols[2].push(o);
+                cols[1].push(o);
+                cols[2].push(c);
             }
             let cutoff = moment.utc().subtract(13, 'weeks').startOf('week').weekday(4);
             let chartdiv = new HTML('div', {