Skip to content

Commit

Permalink
Merge pull request p2pool#267 from drazisil/patch-1
Browse files Browse the repository at this point in the history
Added current_payouts label
  • Loading branch information
forrestv committed Aug 28, 2015
2 parents d8b6023 + b3e01a7 commit aabf60f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion web-static/graphs.html
Original file line number Diff line number Diff line change
Expand Up @@ -472,7 +472,7 @@ <h2>Memory Usage</h2>
});
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"}
]);
});
});
Expand Down

0 comments on commit aabf60f

Please sign in to comment.