From b3e01a7b17a347ab3d9cc4d1645d946706c138f8 Mon Sep 17 00:00:00 2001 From: "Joseph W. Becher" Date: Fri, 28 Aug 2015 11:40:51 -0400 Subject: [PATCH] Update graphs.html Added missing label to current_payouts table --- web-static/graphs.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web-static/graphs.html b/web-static/graphs.html index 30a3e103c..1ed8a48e3 100644 --- a/web-static/graphs.html +++ b/web-static/graphs.html @@ -472,7 +472,7 @@

Memory Usage

}); div.append("svg:svg").each(function(u) { plot(d3.select(this), currency_info.symbol, null, [ - {"data": current_payouts.map(function(d){ return [d[0], u in d[1] ? d[1][u] : d[3], d[2]] }), "color": "#0000FF"} + {"data": current_payouts.map(function(d){ return [d[0], u in d[1] ? d[1][u] : d[3], d[2]] }), "color": "#0000FF", "label": "Current"} ]); }); });