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/06 13:12:56 UTC

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

Author: humbedooh
Date: Tue Aug  6 13:12:56 2019
New Revision: 1864520

URL: http://svn.apache.org/viewvc?rev=1864520&view=rev
Log:
fix legend name for MLs

Modified:
    comdev/reporter.apache.org/trunk/site/wizard/js/source/statistics_generator.js
    comdev/reporter.apache.org/trunk/site/wizard/js/wizard.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=1864520&r1=1864519&r2=1864520&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 Tue Aug  6 13:12:56 2019
@@ -165,7 +165,7 @@ function statistics_health(data) {
         if (txt.length > 0) {
             let cols = [
                 ['x'],
-                ['%s@'.format(a[1])]
+                [ml]
             ];
             for (var i = 0; i < 24; i++) {
                 let date = moment.utc().subtract(i, 'weeks').startOf('week').weekday(4);

Modified: comdev/reporter.apache.org/trunk/site/wizard/js/wizard.js
URL: http://svn.apache.org/viewvc/comdev/reporter.apache.org/trunk/site/wizard/js/wizard.js?rev=1864520&r1=1864519&r2=1864520&view=diff
==============================================================================
--- comdev/reporter.apache.org/trunk/site/wizard/js/wizard.js (original)
+++ comdev/reporter.apache.org/trunk/site/wizard/js/wizard.js Tue Aug  6 13:12:56 2019
@@ -2264,7 +2264,7 @@ function statistics_health(data) {
         if (txt.length > 0) {
             let cols = [
                 ['x'],
-                ['%s@'.format(a[1])]
+                [ml]
             ];
             for (var i = 0; i < 24; i++) {
                 let date = moment.utc().subtract(i, 'weeks').startOf('week').weekday(4);