commit fef2cd47cb706270ea6fd1e18e6e3bf21463df05 Author: Isis Lovecruft isis@torproject.org Date: Thu May 21 10:15:28 2015 +0000
Fix switch bandwidith graph labels for read/written bytes.
* FIXES #13084: https://bugs.torproject.org/13084 * THANKS TO arma for finding the bug. --- src/js/views/HistoryGraphView.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/js/views/HistoryGraphView.js b/src/js/views/HistoryGraphView.js index 169a5b4..899ab4a 100644 --- a/src/js/views/HistoryGraphView.js +++ b/src/js/views/HistoryGraphView.js @@ -171,7 +171,7 @@ GLOBE.RelayBandwidthView = GLOBE.HistoryGraphView.extend({ }, title: 'Bandwidth', graphs: ['readHistory', 'writeHistory'], - labels: ['written bytes per second', 'read bytes per second'], + labels: ['read bytes per second', 'written bytes per second'], legendPos: [{x:60,y:25}, {x:270,y:25}] });
tor-commits@lists.torproject.org